bbmonkey_c.h 167 B

123456789101112131415
  1. #ifndef BB_MONKEY_C_H
  2. #define BB_MONKEY_C_H
  3. #ifdef __cplusplus
  4. extern "C"{
  5. #endif
  6. extern void bb_printf( const char *fmt,...);
  7. #ifdef __cplusplus
  8. }
  9. #endif
  10. #endif