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