X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=list.h;fp=list.h;h=b5549147e1f04f32134456ca1bd22b998edddbd8;hb=551ef6ebd6cfbf7caf60dd132953fad4b687f107;hp=0000000000000000000000000000000000000000;hpb=9042c664acc02475b9dbb9109d1a9ddb5d9180c0;p=my-code%2Fhdw-sniff.git diff --git a/list.h b/list.h new file mode 100644 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);