bbmonkey.h 483 B

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