added list support
[my-code/hdw-sniff.git] / list.h
diff --git a/list.h b/list.h
new file mode 100644 (file)
index 0000000..b554914
--- /dev/null
+++ b/list.h
@@ -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, struct list *my_list);