X-Git-Url: https://www.hackdaworld.org/gitweb/?a=blobdiff_plain;f=old%2Flist.h;fp=old%2Flist.h;h=075bc509ff9f2f28c574e962bd4113e51bdaa089;hb=1bc659fa450df2108ab59b085e75564b7ac19995;hp=0000000000000000000000000000000000000000;hpb=f495a11c9e880f1f55aa8e6c44c065228e55e5c5;p=my-code%2Fhdw-sniff.git diff --git a/old/list.h b/old/list.h new file mode 100644 index 0000000..075bc50 --- /dev/null +++ b/old/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,unsigned short cap, struct list *my_list);