source: bootcd/isolinux/syslinux-6.03/core/strcasecmp.c @ dd1be7c

Last change on this file since dd1be7c was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 151 bytes
Line 
1/*
2 * strcasecmp.c
3 */
4
5#include <string.h>
6#include <ctype.h>
7
8int strcasecmp(const char *s1, const char *s2)
9{
10    return strncasecmp(s1, s2, -1);
11}
Note: See TracBrowser for help on using the repository browser.