Name: Anonymous 2010-07-23 16:33
What's wrong with my naming convention for types?
typedef struct {
int a;
int b;
} tPair;
typedef struct {
int a;
int b;
} tPair;
typedef struct cons {
void *car;
struct cons *cdr;
} cons_t;