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.
11 lines
184 B
C
11 lines
184 B
C
3 years ago
|
#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
|