bbmonkey.h 443 B

1234567891011121314151617181920212223242526
  1. #ifndef BB_MONKEY_H
  2. #define BB_MONKEY_H
  3. #include "bbstd.h"
  4. #include "bbtypes.h"
  5. #include "bbassert.h"
  6. #include "bbstring.h"
  7. #include "bbdebug.h"
  8. #include "bbgc.h"
  9. #include "bbarray.h"
  10. #include "bbfunction.h"
  11. #include "bbobject.h"
  12. #include "bbvariant.h"
  13. #include "bbtypeinfo_t.h"
  14. #include "bbdeclinfo.h"
  15. extern int bb_argc;
  16. extern char **bb_argv;
  17. extern void bb_print( bbString str );
  18. extern void bb_printf( const char *fmt,...);
  19. #endif