jssnprintf.c
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)jssnprintf.c 1.4 99/08/30 Copyright 1985 J. Schilling */
  2. /*
  3.  * Copyright (c) 1985 J. Schilling
  4.  */
  5. /*
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; see the file COPYING.  If not, write to
  18.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20. #include <mconfig.h>
  21. #include <stdio.h> /* Try to get size_t */
  22. #include <stdxlib.h> /* Try again for size_t */
  23. #include <vadefs.h>
  24. #include <standard.h>
  25. #ifdef HAVE_SIZE_T
  26. EXPORT int js_snprintf __PR((char *, size_t maxcnt, const char *, ...));
  27. #else
  28. typedef unsigned int size_t;
  29. #endif
  30. typedef struct {
  31. char *ptr;
  32. int count;
  33. } *BUF, _BUF;
  34. #ifdef PROTOTYPES
  35. static void _cput(char c, long l)
  36. #else
  37. static void _cput(c, l)
  38. char c;
  39. long l;
  40. #endif
  41. {
  42. register BUF bp = (BUF)l;
  43. if (--bp->count > 0) {
  44. *bp->ptr++ = c;
  45. } else {
  46. /*
  47.  * Make sure that there will never be a negative overflow.
  48.  */
  49. bp->count++;
  50. }
  51. }
  52. /* VARARGS2 */
  53. #ifdef PROTOTYPES
  54. int js_snprintf(char *buf, size_t maxcnt, const char *form, ...)
  55. #else
  56. int js_snprintf(buf, maxcnt, form, va_alist)
  57. char *buf;
  58. unsigned maxcnt;
  59. char *form;
  60. va_dcl
  61. #endif
  62. {
  63. va_list args;
  64. int cnt;
  65. _BUF bb;
  66. bb.ptr = buf;
  67. bb.count = maxcnt;
  68. #ifdef PROTOTYPES
  69. va_start(args, form);
  70. #else
  71. va_start(args);
  72. #endif
  73. cnt = format(_cput, (long)&bb, form,  args);
  74. va_end(args);
  75. *(bb.ptr) = '';
  76. if (bb.count <= 0)
  77. return (-1);
  78. return (cnt);
  79. }