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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_priv.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:39:01  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: ncbi_priv.c,v 1000.0 2003/10/29 16:39:01 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:  Denis Vakatov
  35.  *
  36.  * File Description:
  37.  *   Private aux. code for the "ncbi_*.[ch]"
  38.  *
  39.  */
  40. #include "ncbi_priv.h"
  41. #include <stdarg.h>
  42. #include <string.h>
  43. MT_LOCK g_CORE_MT_Lock = 0;
  44. LOG     g_CORE_Log = 0;
  45. REG     g_CORE_Registry = 0;
  46. extern const char* g_CORE_Sprintf(const char* fmt, ...)
  47. {
  48.   va_list args;
  49.   static char str[4096];
  50.   va_start(args, fmt);
  51.   *str = '';
  52.   vsprintf(str, fmt, args);
  53.   assert(strlen(str) < sizeof(str));
  54.   va_end(args);
  55.   return str;
  56. }
  57. extern char* g_CORE_RegistryGET
  58. (const char* section,
  59.  const char* name,
  60.  char*       value,
  61.  size_t      value_size,
  62.  const char* def_value)
  63. {
  64.     char* ret_value;
  65.     CORE_LOCK_READ;
  66.     ret_value = REG_Get(g_CORE_Registry,
  67.                         section, name, value, value_size, def_value);
  68.     CORE_UNLOCK;
  69.     return ret_value;
  70. }
  71. /*
  72.  * ---------------------------------------------------------------------------
  73.  * $Log: ncbi_priv.c,v $
  74.  * Revision 1000.0  2003/10/29 16:39:01  gouriano
  75.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.4
  76.  *
  77.  * Revision 6.4  2002/09/24 15:06:40  lavr
  78.  * Log moved to end
  79.  *
  80.  * Revision 6.3  2002/06/18 18:39:38  ucko
  81.  * Explicitly initialize global variables to avoid a MacOS X linker bug.
  82.  *
  83.  * Revision 6.2  2002/03/22 19:52:17  lavr
  84.  * Do not include <stdio.h>: included from ncbi_util.h or ncbi_priv.h
  85.  *
  86.  * Revision 6.1  2000/03/24 22:53:35  vakatov
  87.  * Initial revision
  88.  *
  89.  * ===========================================================================
  90.  */