zpylib.h (253B)
1 #include <String.h> 2 #include <stddef.h> 3 #include <stdlib.h> 4 5 void printstr(char *str); 6 void printchar(char c); 7 void printint(int i); 8 void printfloat(double f); 9 char *readstr(); 10 int readint(); 11 void readfloat(double f); 12 int randint(int lower, int upper);