universe.h (raw)
1 2 3 4 5 6 7 8 9 10 11 |
typedef unsigned int unit; typedef struct Atom { char name[16]; char value[64]; } Atom; typedef struct Universe { uint count; Atom** data; } Universe; |
universe.h (raw)
1 2 3 4 5 6 7 8 9 10 11 |
typedef unsigned int unit; typedef struct Atom { char name[16]; char value[64]; } Atom; typedef struct Universe { uint count; Atom** data; } Universe; |