strcasecmp.h 442 B

123456789101112131415161718192021222324
  1. /*
  2. * strcasecmp.h
  3. * prototypes for strcasecmp.c
  4. *
  5. */
  6. #ifndef _EGG_COMPAT_STRCASECMP_H
  7. #define _EGG_COMPAT_STRCASECMP_H
  8. #include "src/common.h"
  9. #include <ctype.h>
  10. #ifndef HAVE_STRCASECMP
  11. /* Use our own implementation. */
  12. int strcasecmp(const char *, const char *);
  13. #endif
  14. #ifndef HAVE_STRNCASECMP
  15. /* Use our own implementation. */
  16. int strncasecmp(const char *, const char *, size_t);
  17. #endif
  18. #endif /* !__EGG_COMPAT_STRCASECMP_H */