Joseph Redmon
2014-07-14 70d622ea54c55aa5489e71b769a92447a586c879
src/option_list.h
@@ -2,6 +2,13 @@
#define OPTION_LIST_H
#include "list.h"
typedef struct{
    char *key;
    char *val;
    int used;
} kvp;
void option_insert(list *l, char *key, char *val);
char *option_find(list *l, char *key);
char *option_find_str(list *l, char *key, char *def);