13 extern int (*
sprintf)(
char* str,
const char* format, ...);
53 int sprintf(
char* str,
const char* format, ...);
68 void print(
const char* str);
91 void error(
const char* errMessage);
void error(const char *errMessage)
print error messagePrint an error message
Definition: print.c:131
void clear()
clear the output stream
Definition: print.c:150
void display()
display print stream
Definition: print.c:155
Data types for the gamecube.
int sprintf(char *str, const char *format,...)
write formatted data to string
void print(const char *str)
print a string to the output streamThis function prints a string to an output stream displayed on the...
Definition: print.c:52