aboutsummaryrefslogtreecommitdiffstats
path: root/wlp/yytest.c
diff options
context:
space:
mode:
Diffstat (limited to 'wlp/yytest.c')
-rw-r--r--wlp/yytest.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/wlp/yytest.c b/wlp/yytest.c
deleted file mode 100644
index 74c6fe7..0000000
--- a/wlp/yytest.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <stdio.h>
-
-#include "structs.h"
-#include "macro.h"
-
-
-
-int parse(FILE *file);
-
-struct wlp_list_t *list;
-
-int main(int argc,char **argv) {
- struct wlp_node_t *tmp;
- int count;
-
- parse(NULL);
-
- if(list)
- for(tmp = list->head, count=0;
- tmp != list->head || count == 0;
- tmp = tmp->next, count++)
- printf("FOUND(%d) '%s' '%s' '%s'\n",count,tmp->left,tmp->right,tmp->owner);
-
- return(0);
-}