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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)jssnprintf.c 1.5 00/01/21 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 <sys/types.h> /* Try to get size_t */
  22. #include <stdio.h> /* Try again for size_t */
  23. #include <stdxlib.h> /* Try again for size_t */
  24. #include <vadefs.h>
  25. #include <standard.h>
  26. EXPORT int js_snprintf __PR((char *, size_t maxcnt, const char *, ...));
  27. typedef struct {
  28. char *ptr;
  29. int count;
  30. } *BUF, _BUF;
  31. #ifdef PROTOTYPES
  32. static void _cput(char c, long l)
  33. #else
  34. static void _cput(c, l)
  35. char c;
  36. long l;
  37. #endif
  38. {
  39. register BUF bp = (BUF)l;
  40. if (--bp->count > 0) {
  41. *bp->ptr++ = c;
  42. } else {
  43. /*
  44.  * Make sure that there will never be a negative overflow.
  45.  */
  46. bp->count++;
  47. }
  48. }
  49. /* VARARGS2 */
  50. #ifdef PROTOTYPES
  51. int js_snprintf(char *buf, size_t maxcnt, const char *form, ...)
  52. #else
  53. int js_snprintf(buf, maxcnt, form, va_alist)
  54. char *buf;
  55. unsigned maxcnt;
  56. char *form;
  57. va_dcl
  58. #endif
  59. {
  60. va_list args;
  61. int cnt;
  62. _BUF bb;
  63. bb.ptr = buf;
  64. bb.count = maxcnt;
  65. #ifdef PROTOTYPES
  66. va_start(args, form);
  67. #else
  68. va_start(args);
  69. #endif
  70. cnt = format(_cput, (long)&bb, form,  args);
  71. va_end(args);
  72. *(bb.ptr) = '';
  73. if (bb.count <= 0)
  74. return (-1);
  75. return (cnt);
  76. }