strcasecmp.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1999  Ross Combs (rocombs@cs.nmsu.edu)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include "common/setup_before.h"
  19. #ifndef HAVE_STRCASECMP
  20. #include <ctype.h>
  21. #ifdef HAVE_STRING_H
  22. # include <string.h>
  23. #else
  24. # ifdef HAVE_STRINGS_H
  25. #  include <strings.h>
  26. # endif
  27. #endif
  28. #include "strcasecmp.h"
  29. #include "common/setup_after.h"
  30. extern int strcasecmp(char const * str1, char const * str2)
  31. {
  32.     unsigned int i;
  33.     int          a;
  34.     int          b;
  35.     
  36.     if (!str1 || !str2)
  37.         return -1;
  38.     
  39.     /* some versions of tolower() break when given already lowercase characters */
  40.     for (i=0; str1[i]!='' && str2[i]!=''; i++)
  41.     {
  42. if (isupper((int)str1[i]))
  43.     a = (int)tolower((int)str1[i]);
  44. else
  45.     a = (int)str1[i];
  46. if (isupper((int)str2[i]))
  47.     b = (int)tolower((int)str2[i]);
  48. else
  49.     b = (int)str2[i];
  50. if (a<b)
  51.     return -1;
  52. if (a>b)
  53.     return +1;
  54.     }
  55.     
  56.     if (str1[i]!='')
  57. return -1;
  58.     if (str2[i]!='')
  59. return +1;
  60.     return 0;
  61. }
  62. #else
  63. typedef int filenotempty; /* make ISO standard happy */
  64. #endif