]> git.sur5r.net Git - openldap/blob - libraries/macintosh/strings.c
Import some lint removal
[openldap] / libraries / macintosh / strings.c
1 /*
2  * strings.c
3  */
4 #include <string.h>
5 #include <stdlib.h>
6 #include "macos.h"
7
8
9 #ifndef NO_GLOBALS
10 /*
11  * Copyright (c) 1987 Regents of the University of California.
12  * All rights reserved.  The Berkeley software License Agreement
13  * specifies the terms and conditions for redistribution.
14  */
15 /*
16  * This array is designed for mapping upper and lower case letter
17  * together for a case independent comparison.  The mappings are
18  * based upon ascii character sequences.
19  */
20 static char charmap[] = {
21         '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
22         '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
23         '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
24         '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
25         '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
26         '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
27         '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
28         '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
29         '\100', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
30         '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
31         '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
32         '\170', '\171', '\172', '\133', '\134', '\135', '\136', '\137',
33         '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
34         '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
35         '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
36         '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
37         '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
38         '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
39         '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
40         '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
41         '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
42         '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
43         '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
44         '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
45         '\300', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
46         '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
47         '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
48         '\370', '\371', '\372', '\333', '\334', '\335', '\336', '\337',
49         '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
50         '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
51         '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
52         '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
53 };
54
55 int
56 strcasecmp(char *s1, char *s2)
57 {
58         register char *cm = charmap;
59
60         while (cm[*s1] == cm[*s2++])
61                 if (*s1++ == '\0')
62                         return(0);
63         return(cm[*s1] - cm[*--s2]);
64 }
65
66 int
67 strncasecmp(char *s1, char *s2, long n)
68 {
69         register char *cm = charmap;
70
71         while (--n >= 0 && cm[*s1] == cm[*s2++])
72                 if (*s1++ == '\0')
73                         return(0);
74         return(n < 0 ? 0 : cm[*s1] - cm[*--s2]);
75 }
76 #endif NO_GLOBALS
77
78
79 char *
80 strdup( char *p )
81 {
82         char    *r;
83
84         r = (char *) malloc( strlen( p ) + 1 );
85         if ( r != NULL ) {
86                 strcpy( r, p );
87         }
88
89         return( r );
90 }