curve: free buffers in reverse order to allocation
[netsniff-ng.git] / oui.h
blob564e4a1e5c77e750839ed028660b40452a40c7d8
1 #ifndef OUI_H
2 #define OUI_H
4 extern const char *lookup_vendor(unsigned int id);
5 extern void dissector_init_oui(void);
6 extern void dissector_cleanup_oui(void);
8 static inline const char *lookup_vendor_str(unsigned int id)
10 return lookup_vendor(id) ? : "Unknown";
13 #endif /* OUI_H */