7 lines
99 B
C
Raw Normal View History

#define true 1
#define false 0
#define boolean char
struct String{
int length;
char*str;
};