1/* Copyright (C) 1993, 1997 Free Software Foundation, Inc.
2   This file is part of the GNU IO Library.
3
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.
8
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.
13
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.
18
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.  */
25
26#include "libioP.h"
27
28#define PADSIZE 16
29static char const blanks[PADSIZE] =
30{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '};
31static char const zeroes[PADSIZE] =
32{'0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0'};
33
34_IO_ssize_t
35_IO_padn (fp, pad, count)
36      _IO_FILE *fp;
37      int pad;
38      _IO_ssize_t count;
39{
40  char padbuf[PADSIZE];
41  const char *padptr;
42  int i;
43  _IO_size_t written = 0;
44  _IO_size_t w;
45
46  if (pad == ' ')
47    padptr = blanks;
48  else if (pad == '0')
49    padptr = zeroes;
50  else
51    {
52      for (i = PADSIZE; --i >= 0; )
53	padbuf[i] = pad;
54      padptr = padbuf;
55    }
56  for (i = count; i >= PADSIZE; i -= PADSIZE)
57    {
58      w = _IO_sputn (fp, padptr, PADSIZE);
59      written += w;
60      if (w != PADSIZE)
61	return written;
62    }
63
64  if (i > 0)
65    {
66      w = _IO_sputn (fp, padptr, i);
67      written += w;
68    }
69  return written;
70}
71