home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / v9t9 / linux / sources / V9t9 / source / sysdeps.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-10-19  |  492 b   |  31 lines

  1.  
  2. #if !HAVE_STRCASECMP
  3. extern int strcasecmp(const char *a, const char *b);
  4. #endif
  5.  
  6. #if !HAVE_STRNCASECMP
  7. extern int strncasecmp(const char *a, const char *b, size_t max);
  8. #endif
  9.  
  10. #if !HAVE_STRDUP
  11. extern char *strdup(const char *s);
  12. #endif
  13.  
  14. #if !HAVE_SWAB
  15. extern void swab(const void *src, void *dst, int num);
  16. #endif
  17.  
  18. #if !HAVE_STRUPR
  19. extern char *strupr(char *s);
  20. #endif
  21.  
  22. #if __GNUC__
  23. #define INLINE     static inline
  24. #elif __MWERKS__
  25. #define INLINE    inline
  26. #else
  27. #define INLINE    static
  28. #endif
  29.  
  30.  
  31.