For Project Euler progression and fun
 
 
ProjectEuler/archives/14/src/utils.h

7 lines
99 B

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