#ifndef foointerfacehfoo #define foointerfacehfoo #include #include "wireless.h" #include "util.h" struct interface { char name[IFNAMSIZ+1]; int fd; }; struct interface *interface_open(char *name); void interface_close(struct interface *i); int interface_is_assoc(struct interface *i, struct hw_addr *a); #endif