#include <sys/types.h> struct ubistryKey { struct ubistryKey *prev; struct ubistryKey *next; char name[128]; char value[512]; }; struct ubistryKey * ubistryFindKey(char *); int ubistryAddKey(char *,char *);