7 lines
99 B
C
7 lines
99 B
C
#define true 1
|
|
#define false 0
|
|
#define boolean char
|
|
struct String{
|
|
int length;
|
|
char*str;
|
|
}; |