更新数据结构

master
brisk 2014-03-27 18:36:28 +08:00
parent 23715c44bf
commit 025c96bf4f
1 changed files with 2 additions and 5 deletions

View File

@ -6,22 +6,19 @@
#include <stdlib.h>
#include <string.h>
/*值链表数据结构*/
/*值数据结构*/
typedef struct node
{
char *key
char *value;
struct node *next;
char **value;
}CONF_VALUE;
/* 键/值对数据结构
* hash使hash0 1
* len
* next
*/
typedef struct arg
{
int hash;
int len;
CONF_VALUE *value;