home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / gnuc / string / rcs / strcasecmp.c,v < prev    next >
Encoding:
Text File  |  1992-07-04  |  5.3 KB  |  160 lines

  1. head    1.1;
  2. access;
  3. symbols
  4.     version39-41:1.1;
  5. locks;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    92.06.08.17.58.42;    author mwild;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @initial checkin
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * Copyright (c) 1987 Regents of the University of California.
  27.  * All rights reserved.
  28.  *
  29.  * Redistribution and use in source and binary forms, with or without
  30.  * modification, are permitted provided that the following conditions
  31.  * are met:
  32.  * 1. Redistributions of source code must retain the above copyright
  33.  *    notice, this list of conditions and the following disclaimer.
  34.  * 2. Redistributions in binary form must reproduce the above copyright
  35.  *    notice, this list of conditions and the following disclaimer in the
  36.  *    documentation and/or other materials provided with the distribution.
  37.  * 3. All advertising materials mentioning features or use of this software
  38.  *    must display the following acknowledgement:
  39.  *    This product includes software developed by the University of
  40.  *    California, Berkeley and its contributors.
  41.  * 4. Neither the name of the University nor the names of its contributors
  42.  *    may be used to endorse or promote products derived from this software
  43.  *    without specific prior written permission.
  44.  *
  45.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  46.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  47.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  48.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  49.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  50.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  51.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  52.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  53.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  54.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  55.  * SUCH DAMAGE.
  56.  */
  57.  
  58. #include <sys/cdefs.h>
  59. #include <string.h>
  60.  
  61. #if defined(LIBC_SCCS) && !defined(lint)
  62. static const char sccsid[] = "@@(#)strcasecmp.c    5.10 (Berkeley) 1/26/91";
  63. #endif /* LIBC_SCCS and not lint */
  64.  
  65. typedef unsigned char u_char;
  66.  
  67. /*
  68.  * This array is designed for mapping upper and lower case letter
  69.  * together for a case independent comparison.  The mappings are
  70.  * based upon ascii character sequences.
  71.  */
  72. static const u_char charmap[] = {
  73.     '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
  74.     '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
  75.     '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
  76.     '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
  77.     '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
  78.     '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
  79.     '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
  80.     '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
  81.     '\100', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
  82.     '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
  83.     '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
  84.     '\170', '\171', '\172', '\133', '\134', '\135', '\136', '\137',
  85.     '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
  86.     '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
  87.     '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
  88.     '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
  89.     '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
  90.     '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
  91.     '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
  92.     '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
  93.     '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
  94.     '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
  95.     '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
  96.     '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
  97.     '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
  98.     '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
  99.     '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
  100.     '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
  101.     '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
  102.     '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
  103.     '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
  104.     '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
  105. };
  106.  
  107. int
  108. strcasecmp(s1, s2)
  109.     const char *s1, *s2;
  110. {
  111.     register const u_char *cm = charmap,
  112.             *us1 = (const u_char *)s1,
  113.             *us2 = (const u_char *)s2;
  114.  
  115.     while (cm[*us1] == cm[*us2++])
  116.         if (*us1++ == '\0')
  117.             return (0);
  118.     return (cm[*us1] - cm[*--us2]);
  119. }
  120.  
  121. int
  122. strncasecmp(s1, s2, n)
  123.     const char *s1, *s2;
  124.     register size_t n;
  125. {
  126.     if (n != 0) {
  127.         register const u_char *cm = charmap,
  128.                 *us1 = (const u_char *)s1,
  129.                 *us2 = (const u_char *)s2;
  130.  
  131.         do {
  132.             if (cm[*us1] != cm[*us2++])
  133.                 return (cm[*us1] - cm[*--us2]);
  134.             if (*us1++ == '\0')
  135.                 break;
  136.         } while (--n != 0);
  137.     }
  138.     return (0);
  139. }
  140.  
  141. /*
  142.  * seems like the following two are different names for the same thing
  143.  */
  144.  
  145. int
  146. stricmp (s1, s2)
  147.     const char *s1, *s2;
  148. {
  149.   return strcasecmp (s1, s2);
  150. }
  151.  
  152. int
  153. strnicmp (s1, s2, n)
  154.     const char *s1, *s2;
  155.     register size_t n;
  156. {
  157.   return strncasecmp (s1, s2, n);
  158. }
  159. @
  160.