Update.
[glibc.git] / libio / iowpadn.c
blobb4904589a29a80aa7e16a535ebb0fde22c17a947
1 /* Copyright (C) 1993, 1997, 1999 Free Software Foundation, Inc.
2 This file is part of the GNU IO Library.
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License as
6 published by the Free Software Foundation; either version 2, or (at
7 your option) any later version.
9 This library is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this library; see the file COPYING. If not, write to
16 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
17 MA 02111-1307, USA.
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does
21 not cause the resulting executable to be covered by the GNU General
22 Public License. This exception does not however invalidate any
23 other reasons why the executable file might be covered by the GNU
24 General Public License. */
26 #include "libioP.h"
28 #define PADSIZE 16
29 static wchar_t const blanks[PADSIZE] =
31 L' ', L' ', L' ', L' ', L' ', L' ', L' ', L' ',
32 L' ', L' ', L' ', L' ', L' ', L' ', L' ', L' '
34 static wchar_t const zeroes[PADSIZE] =
36 L'0', L'0', L'0', L'0', L'0', L'0', L'0', L'0',
37 L'0', L'0', L'0', L'0', L'0', L'0', L'0', L'0'
40 _IO_ssize_t
41 _IO_wpadn (fp, pad, count)
42 _IO_FILE *fp;
43 wint_t pad;
44 _IO_ssize_t count;
46 wchar_t padbuf[PADSIZE];
47 const wchar_t *padptr;
48 int i;
49 _IO_size_t written = 0;
50 _IO_size_t w;
52 if (pad == L' ')
53 padptr = blanks;
54 else if (pad == L'0')
55 padptr = zeroes;
56 else
58 for (i = PADSIZE; --i >= 0; )
59 padbuf[i] = pad;
60 padptr = padbuf;
62 for (i = count; i >= PADSIZE; i -= PADSIZE)
64 w = _IO_sputn (fp, (char *) padptr, PADSIZE);
65 written += w;
66 if (w != PADSIZE)
67 return written;
70 if (i > 0)
72 w = _IO_sputn (fp, (char *) padptr, i);
73 written += w;
75 return written;