1 #ifndef GLOBIT_H 2 #define GLOBIT_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 extern int globit_best(const char *, char **, 9 void(*callback)(const void *, const char * const *, unsigned), const void* cback_user_parm); 10 11 #ifdef __cplusplus 12 } 13 #endif 14 15 #endif /* GLOBIT_H */ 16 17 // vim: set sw=4 ts=4 et: 18