summaryrefslogtreecommitdiff
path: root/libhashtable/example.c
diff options
context:
space:
mode:
authorEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-09-07 02:53:24 -0500
committerEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-09-07 02:53:24 -0500
commit9b8d802ca89027de46ee45fbc9adf978a16e7927 (patch)
treea7795bd687719df809f307ea4dd553a25ccbecda /libhashtable/example.c
parentf41ec6d42942f994f762486a9ab525ed8c5506e5 (diff)
downloadsegfault-9b8d802ca89027de46ee45fbc9adf978a16e7927.tar.gz
segfault-9b8d802ca89027de46ee45fbc9adf978a16e7927.zip
small fix with libhashtable's header
Diffstat (limited to 'libhashtable/example.c')
-rw-r--r--libhashtable/example.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libhashtable/example.c b/libhashtable/example.c
index 614e440..bc42a67 100644
--- a/libhashtable/example.c
+++ b/libhashtable/example.c
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include "libhashtable.h"
+#include "hashtable.h"
extern char **environ;
@@ -8,14 +8,13 @@ int main(int argc,char *argv[]) {
int i;
char *name;
char *value;
- inittable(&ht);
+ inittable(&ht,65535);
for(i=0;environ[i];i++) {
name=strdup(environ[i]);
if((value=strchr(name,'=') )){
*value=0;
value++;
}
- //printf("'%s' = '%s'\n",name,value);
ht_setkey(&ht,name,value);
free(name);
}