liblist.h revision 61
#ifndef __LIBLIST_H__
#define __LIBLIST_H__
struct libnode;
struct liblist;
typedef struct libnode {
/* a particular name table */
} libnode_t;
typedef struct liblist {
} liblist_t;
/* liblist utils */
/* callbacks */
#endif