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 { void *car, *cdr; } cons;typedef? struct pair { int a,b; };
typedef struct {
int auto;
int tune;
} tPain;
typedef struct cons {
void *car;
struct cons *cdr;
} cons_t;typedef struct cons {
void *car;
struct cons *cdr;
} cons_t;
int main (void) {
cons_t please, avoid, using, reserved, suffixes, in, type, names;
cons compile, error;
return 1;
}