vsnprintf.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: vsnprintf.c,v 11.4 2000/05/18 19:24:59 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdio.h>
  14. #endif
  15. #include "db_int.h"
  16. /*
  17.  * vsnprintf --
  18.  * Bounded version of vsprintf.
  19.  *
  20.  * PUBLIC: #ifndef HAVE_VSNPRINTF
  21.  * PUBLIC: int vsnprintf();
  22.  * PUBLIC: #endif
  23.  */
  24. #ifndef HAVE_VSNPRINTF
  25. int
  26. vsnprintf(str, n, fmt, ap)
  27. char *str;
  28. size_t n;
  29. const char *fmt;
  30. va_list ap;
  31. {
  32. COMPQUIET(n, 0);
  33. #ifdef SPRINTF_RET_CHARPNT
  34. (void)vsprintf(str, fmt, ap);
  35. return (strlen(str));
  36. #else
  37. return (vsprintf(str, fmt, ap));
  38. #endif
  39. }
  40. #endif