File: strcasecmp.c

package info (click to toggle)
glusterfs 3.0.5-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 10,188 kB
  • ctags: 10,263
  • sloc: ansic: 126,592; sh: 10,769; makefile: 530; python: 498; yacc: 497; lisp: 124; lex: 74
file content (29 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* strcasecmp.c
 *
 */

/* Written by Niels Mller <nisse@lysator.liu.se>
 *
 * This file is hereby placed in the public domain.
 */

#include <ctype.h>
int strcasecmp(const char *, const char *);

int strcasecmp(const char *s1, const char *s2)
{
  unsigned i;
  
  for (i = 0; s1[i] && s2[i]; i++)
    {
      unsigned char c1 = tolower( (unsigned char) s1[i]);
      unsigned char c2 = tolower( (unsigned char) s2[i]);

      if (c1 < c2)
	return -1;
      else if (c1 > c2)
	return 1;
    }

  return !s2[i] - !s1[i];	
}