You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef H_IO
|
|
#define H_IO
|
|
|
|
/* print a line to the debug textIO module */
|
|
void dbgln(char* text, int len);
|
|
|
|
/* alphabet for itoa */
|
|
char* itoa (int value, char* str, int base);
|
|
|
|
#endif
|