Newer
Older
ubixos / src / bin / ubistry / include / ubistry.h
@reddawg reddawg on 26 May 2004 247 bytes ubistry: added two functions
#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 *);