log-e-sappho/include/spho/data.h

12 lines
172 B
C

#ifndef _SPHO_DATA_H
#define _SPHO_DATA_H
struct spho_nom {
char s[128];
SLIST_ENTRY(spho_nom) next;
};
SLIST_HEAD(spho_nom_l, spho_nom);
#endif /* _SPHO_DATA_H */