bbmonkey.h 501 B

1234567891011121314151617181920212223242526272829
  1. #ifndef BB_MONKEY_H
  2. #define BB_MONKEY_H
  3. #include "bbstd.h"
  4. #include "bbtypes.h"
  5. #include "bbassert.h"
  6. #include "bbmemory.h"
  7. #include "bbstring.h"
  8. #include "bbdebug.h"
  9. #include "bbgc.h"
  10. #include "bbarray.h"
  11. #include "bbfunction.h"
  12. #include "bbobject.h"
  13. #include "bbinit.h"
  14. extern int bb_argc;
  15. extern char **bb_argv;
  16. extern void bb_print( bbString str );
  17. extern void bb_printf( const char *fmt,...);
  18. template<class X,class Y> int bbCompare( X x,Y y ){
  19. if( y>x ) return -1;
  20. return x>y;
  21. }
  22. #endif