summaryrefslogtreecommitdiff
path: root/src/include/keytab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/keytab.h')
-rw-r--r--src/include/keytab.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/include/keytab.h b/src/include/keytab.h
deleted file mode 100644
index 7e15643..0000000
--- a/src/include/keytab.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef KEYTAB_H
-#define KEYTAB_H
-
-#define TABLEN 1024
-
-union value {
- char *str;
- double num;
- unsigned int b : 1;
-};
-
-struct keytab {
- char *key;
- int flag;
- union value v;
-};
-
-struct keytablist {
- struct keytab tab[TABLEN];
-};
-
-int *getkeys(struct keytablist *list, int id);
-struct keytab getkey(struct keytablist *list, int id, char *key);
-void setkey(struct keytablist **list, int *len, int id, char *pair);
-void delkey(struct keytablist *list, int id, char *key);
-
-#endif