Melee Modding Library  2.0.0
A C library for modding Super Smash Bros Melee
print.h
Go to the documentation of this file.
1 
7 #ifndef MML_PRINT_H
8 #define MML_PRINT_H
9 
10 #include "gctypes.h"
11 
13 extern int (*sprintf)(char* str, const char* format, ...);
14 
30 //int printf(const char* format, ...);
31 
32 #if 0
33 
53 int sprintf(char* str, const char* format, ...);
54 
55 #endif
56 
68 void print(const char* str);
69 
77 void clear();
78 
91 void error(const char* errMessage);
92 
102 void display();
103 
104 #endif
void error(const char *errMessage)
print error messagePrint an error message
Definition: print.c:131
Data types for the gamecube.
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