moved old stuff to old/, added new stuff
[my-code/hdw-sniff.git] / old / list.h
diff --git a/old/list.h b/old/list.h
new file mode 100644 (file)
index 0000000..075bc50
--- /dev/null
@@ -0,0 +1,13 @@
+/*
+ * list header file
+ *
+ */
+
+/* data structures */
+struct list {
+       char ssid[32];          /* ssid */
+       struct list *next;      /* pointer to next list */
+};
+
+/* prototypes */
+int add_ssid_2_list(char *ssid,unsigned short cap, struct list *my_list);