Convert 703 function definitions to prototype style.
[glibc.git] / libio / vsnprintf.c
blobfdceb3d786da0f72e9eb9621e0e09f20366dd495
1 /* Copyright (C) 1994-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>.
18 As a special exception, if you link the code in this file with
19 files compiled with a GNU compiler to produce an executable,
20 that does not cause the resulting executable to be covered by
21 the GNU Lesser General Public License. This exception does not
22 however invalidate any other reasons why the executable file
23 might be covered by the GNU Lesser General Public License.
24 This exception applies to code released by its copyright holders
25 in files containing the exception. */
27 #include "libioP.h"
28 #include "strfile.h"
30 static int _IO_strn_overflow (_IO_FILE *fp, int c) __THROW;
32 static int
33 _IO_strn_overflow (_IO_FILE *fp, int c)
35 /* When we come to here this means the user supplied buffer is
36 filled. But since we must return the number of characters which
37 would have been written in total we must provide a buffer for
38 further use. We can do this by writing on and on in the overflow
39 buffer in the _IO_strnfile structure. */
40 _IO_strnfile *snf = (_IO_strnfile *) fp;
42 if (fp->_IO_buf_base != snf->overflow_buf)
44 /* Terminate the string. We know that there is room for at
45 least one more character since we initialized the stream with
46 a size to make this possible. */
47 *fp->_IO_write_ptr = '\0';
49 _IO_setb (fp, snf->overflow_buf,
50 snf->overflow_buf + sizeof (snf->overflow_buf), 0);
52 fp->_IO_write_base = snf->overflow_buf;
53 fp->_IO_read_base = snf->overflow_buf;
54 fp->_IO_read_ptr = snf->overflow_buf;
55 fp->_IO_read_end = snf->overflow_buf + sizeof (snf->overflow_buf);
58 fp->_IO_write_ptr = snf->overflow_buf;
59 fp->_IO_write_end = snf->overflow_buf;
61 /* Since we are not really interested in storing the characters
62 which do not fit in the buffer we simply ignore it. */
63 return c;
67 const struct _IO_jump_t _IO_strn_jumps attribute_hidden =
69 JUMP_INIT_DUMMY,
70 JUMP_INIT(finish, _IO_str_finish),
71 JUMP_INIT(overflow, _IO_strn_overflow),
72 JUMP_INIT(underflow, _IO_str_underflow),
73 JUMP_INIT(uflow, _IO_default_uflow),
74 JUMP_INIT(pbackfail, _IO_str_pbackfail),
75 JUMP_INIT(xsputn, _IO_default_xsputn),
76 JUMP_INIT(xsgetn, _IO_default_xsgetn),
77 JUMP_INIT(seekoff, _IO_str_seekoff),
78 JUMP_INIT(seekpos, _IO_default_seekpos),
79 JUMP_INIT(setbuf, _IO_default_setbuf),
80 JUMP_INIT(sync, _IO_default_sync),
81 JUMP_INIT(doallocate, _IO_default_doallocate),
82 JUMP_INIT(read, _IO_default_read),
83 JUMP_INIT(write, _IO_default_write),
84 JUMP_INIT(seek, _IO_default_seek),
85 JUMP_INIT(close, _IO_default_close),
86 JUMP_INIT(stat, _IO_default_stat),
87 JUMP_INIT(showmanyc, _IO_default_showmanyc),
88 JUMP_INIT(imbue, _IO_default_imbue)
92 int
93 _IO_vsnprintf (string, maxlen, format, args)
94 char *string;
95 _IO_size_t maxlen;
96 const char *format;
97 _IO_va_list args;
99 _IO_strnfile sf;
100 int ret;
101 #ifdef _IO_MTSAFE_IO
102 sf.f._sbf._f._lock = NULL;
103 #endif
105 /* We need to handle the special case where MAXLEN is 0. Use the
106 overflow buffer right from the start. */
107 if (maxlen == 0)
109 string = sf.overflow_buf;
110 maxlen = sizeof (sf.overflow_buf);
113 _IO_no_init (&sf.f._sbf._f, _IO_USER_LOCK, -1, NULL, NULL);
114 _IO_JUMPS (&sf.f._sbf) = &_IO_strn_jumps;
115 string[0] = '\0';
116 _IO_str_init_static_internal (&sf.f, string, maxlen - 1, string);
117 ret = _IO_vfprintf (&sf.f._sbf._f, format, args);
119 if (sf.f._sbf._f._IO_buf_base != sf.overflow_buf)
120 *sf.f._sbf._f._IO_write_ptr = '\0';
121 return ret;
123 ldbl_weak_alias (_IO_vsnprintf, __vsnprintf)
124 ldbl_weak_alias (_IO_vsnprintf, vsnprintf)