home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 199.lha / GimmeLib / macros.h < prev    next >
C/C++ Source or Header  |  1988-12-27  |  400b  |  19 lines

  1. #ifndef GIMMELIB_MACROS_H
  2. #define GIMMELIB_MACROS_H
  3.  
  4. #ifdef GIM_BUILTIN
  5. #ifdef AZTEC_C
  6. #define strcpy    _BUILTIN_strcpy
  7. #define strcmp    _BUILTIN_strcmp
  8. #define strlen    _BUILTIN_strlen
  9. #endif AZTEC_C
  10. #endif GIM_BUILTIN
  11.  
  12.  
  13. /* WSL-type guess-endguess construct (for internal use only) */
  14. #define GUESS        do {
  15. #define QUIF( cond )    if( cond ) break;
  16. #define ENDGUESS    } while( 0 );
  17.  
  18. #endif !GIMMELIB_MACROS_H
  19.