Files
bgpq4/sx_slentry.h
2007-03-22 18:12:32 +00:00

12 lines
165 B
C

#ifndef SX_SLENTRY_H_
#define SX_SLENTRY_H_
struct sx_slentry {
struct sx_slentry* next;
char* text;
};
struct sx_slentry* sx_slentry_new(char* text);
#endif