xrxs/universe.h

12 lines
161 B
C
Raw Normal View History

typedef unsigned int unit;
typedef struct Atom {
char name[16];
char value[64];
} Atom;
typedef struct Universe {
uint count;
Atom** data;
} Universe;