ncbi_ansi_ext.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_ansi_ext.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:34:42  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.14
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: ncbi_ansi_ext.c,v 1000.0 2003/10/29 16:34:42 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anton Lavrentiev
  35.  *
  36.  * File Description:
  37.  *   Non-ANSI, yet widely used functions
  38.  *
  39.  */
  40. #include "ncbi_ansi_ext.h"
  41. #include <ctype.h>
  42. #include <stdlib.h>
  43. #ifndef HAVE_STRDUP
  44. extern char* strdup(const char* str)
  45. {
  46.     size_t size = strlen(str) + 1;
  47.     char*  res  = (char*) malloc(size);
  48.     if (res)
  49.         memcpy(res, str, size);
  50.     return res;
  51. }
  52. #endif /*HAVE_STRDUP*/
  53. #ifndef HAVE_STRCASECMP
  54. /* We assume that we're using ASCII-based charsets */
  55. extern int strcasecmp(const char* s1, const char* s2)
  56. {
  57.     const unsigned char* p1 = (const unsigned char*) s1;
  58.     const unsigned char* p2 = (const unsigned char*) s2;
  59.     unsigned char c1, c2;
  60.     if (p1 == p2)
  61.         return 0;
  62.     do {
  63.         c1 = *p1++;
  64.         c2 = *p2++;
  65.         c1 = c1 >= ' ' && c1 <= 'Z' ? c1 :
  66.             (c1 >= 'a' && c1 <= 'z' ? c1 - ('a' - 'A') : toupper(c1));
  67.         c2 = c2 >= ' ' && c2 <= 'Z' ? c2 :
  68.             (c2 >= 'a' && c2 <= 'z' ? c2 - ('a' - 'A') : toupper(c2));
  69.     } while (c1  &&  c1 == c2);
  70.     return c1 - c2;
  71. }
  72. extern int strncasecmp(const char* s1, const char* s2, size_t n)
  73. {
  74.     const unsigned char* p1 = (const unsigned char*) s1;
  75.     const unsigned char* p2 = (const unsigned char*) s2;
  76.     unsigned char c1, c2;
  77.     if (p1 == p2  ||  n == 0)
  78.         return 0;
  79.     do {
  80.         c1 = *p1++;
  81.         c2 = *p2++;
  82.         c1 = c1 >= ' ' && c1 <= 'Z' ? c1 :
  83.             (c1 >= 'a' && c1 <= 'z' ? c1 - ('a' - 'A') : toupper(c1));
  84.         c2 = c2 >= ' ' && c2 <= 'Z' ? c2 :
  85.             (c2 >= 'a' && c2 <= 'z' ? c2 - ('a' - 'A') : toupper(c2));
  86.     } while (--n > 0  &&  c1  &&  c1 == c2);
  87.     return c1 - c2;
  88. }
  89. #endif /*HAVE_STRCASECMP*/
  90. extern char* strupr(char* s)
  91. {
  92.     unsigned char* t = (unsigned char*) s;
  93.     while ( *t ) {
  94.         *t = toupper(*t);
  95.         t++;
  96.     }
  97.     return s;
  98. }
  99. extern char* strlwr(char* s)
  100. {
  101.     unsigned char* t = (unsigned char*) s;
  102.     while ( *t ) {
  103.         *t = tolower(*t);
  104.         t++;
  105.     }
  106.     return s;
  107. }
  108. extern char* strncpy0(char* s1, const char* s2, size_t n)
  109. {
  110.     *s1 = '';
  111.     return strncat(s1, s2, n);
  112. }
  113. /*
  114.  * --------------------------------------------------------------------------
  115.  * $Log: ncbi_ansi_ext.c,v $
  116.  * Revision 1000.0  2003/10/29 16:34:42  gouriano
  117.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.14
  118.  *
  119.  * Revision 6.14  2002/10/29 22:18:29  lavr
  120.  * Comply with man strdup(2) in the implementation of strdup() here
  121.  *
  122.  * Revision 6.13  2002/10/28 18:55:26  lavr
  123.  * Fix change log to remove duplicate log entry for R6.12
  124.  *
  125.  * Revision 6.12  2002/10/28 18:52:07  lavr
  126.  * Conditionalize definitions of strdup() and str[n]casecmp()
  127.  *
  128.  * Revision 6.11  2002/10/28 15:41:56  lavr
  129.  * Use "ncbi_ansi_ext.h" privately
  130.  *
  131.  * Revision 6.10  2002/09/24 15:05:45  lavr
  132.  * Log moved to end
  133.  *
  134.  * Revision 6.9  2002/03/19 22:12:28  lavr
  135.  * strcasecmp and strncasecmp are optimized (for ASCII range)
  136.  *
  137.  * Revision 6.8  2001/12/04 15:57:22  lavr
  138.  * Tiny style adjustement
  139.  *
  140.  * Revision 6.7  2000/12/28 21:27:52  lavr
  141.  * ANSI C++ compliant use of malloc (explicit casting of result)
  142.  *
  143.  * Revision 6.6  2000/11/07 21:45:16  lavr
  144.  * Removed isupper/islower checking in strlwr/strupr
  145.  *
  146.  * Revision 6.5  2000/11/07 21:19:38  vakatov
  147.  * Compilation warning fixed;  plus, some code beautification...
  148.  *
  149.  * Revision 6.4  2000/10/18 21:15:53  lavr
  150.  * strupr and strlwr added
  151.  *
  152.  * Revision 6.3  2000/10/06 16:40:23  lavr
  153.  * <string.h> included now in <connect/ncbi_ansi_ext.h>
  154.  * conditional preprocessor statements removed
  155.  *
  156.  * Revision 6.2  2000/05/17 16:11:02  lavr
  157.  * Reorganized for use of HAVE_* defines
  158.  *
  159.  * Revision 6.1  2000/05/15 19:03:41  lavr
  160.  * Initial revision
  161.  *
  162.  * ==========================================================================
  163.  */