2004-11-14 08:19:01 +08:00
|
|
|
/* __fpending.c -- return the number of pending output bytes on a stream
|
2004-11-23 19:02:03 +08:00
|
|
|
Copyright (C) 2000, 2004 Free Software Foundation, Inc.
|
2004-11-14 08:19:01 +08:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
2005-05-14 15:58:06 +08:00
|
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
2004-11-14 08:19:01 +08:00
|
|
|
|
|
|
|
/* Written by Jim Meyering. */
|
|
|
|
|
2005-09-22 14:05:39 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2004-11-14 08:19:01 +08:00
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "__fpending.h"
|
|
|
|
|
2004-11-23 19:02:03 +08:00
|
|
|
/* Return the number of pending (aka buffered, unflushed)
|
|
|
|
bytes on the stream, FP, that is open for writing. */
|
2004-11-14 08:19:01 +08:00
|
|
|
size_t
|
|
|
|
__fpending (FILE *fp)
|
|
|
|
{
|
2004-12-06 03:27:47 +08:00
|
|
|
return PENDING_OUTPUT_N_BYTES;
|
2004-11-14 08:19:01 +08:00
|
|
|
}
|