debug.h 245 B

12345678910
  1. #ifndef __API_DEBUG_H__
  2. #define __API_DEBUG_H__
  3. typedef int (*libapi_print_fn_t)(const char *, ...);
  4. void libapi_set_print(libapi_print_fn_t warn,
  5. libapi_print_fn_t info,
  6. libapi_print_fn_t debug);
  7. #endif /* __API_DEBUG_H__ */