cleaned up function definitions for serial and print modules and added a comment about the deeply flawed printFloat method

This commit is contained in:
Simen Svale Skogsrud
2011-06-03 15:36:14 +02:00
parent 5eea9f4c7c
commit 9488cb329c
3 changed files with 12 additions and 3 deletions

View File

@ -25,9 +25,13 @@
#define print_h
void printString(const char *s);
void printPgmString(const char *s);
void printInteger(long n);
void printIntegerInBase(unsigned long n, unsigned long base);
void printFloat(double n);
#endif