mirror of
https://github.com/bgp/bgpq4.git
synced 2024-05-11 05:55:05 +00:00
12 lines
165 B
C
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
|