mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
3ba06713f8
2002-08-04 Jakub Jelinek <jakub@redhat.com> * manual/debug.texi: Fix spelling to programmatically. Reported by <hayastan132@hotmail.com>. * include/libio.h: Add libc_hidden_proto for __uflow. * include/stdio.h: Map fopen, fdopen, fclose, fputs, fsetpos, and fgetpos to _IO_* names. Add libc_hidden_proto for fileno, fwrite, fseek, fflush_unlocked, fread_unlocked, fwrite_unlocked, fgets_unlocked, fputs_unlocked. * include/wchar.h: Add libc_hidden_proto for fputws_unlocked, putwc_unlocked, vswscanf. * libio/iolibio.h: Add libc_hidden_proto for _IO_fputs. * libio/fileno.c: Use <stdio.h> and libc_hidden_def. * libio/fseek.c: Likewise. * libio/fmemopen.c: Include "libioP.h". Call _IO_fopencookie and not fopencookie. * libio/genops.c (__uflow): Add libc_hidden_def. * libio/iofflush_u.c (fflush_unlocked): Likewise. * libio/iofgets_u.c (fgets_unlocked): Likewise. * libio/iofputs_u.c (fputs_unlocked): Likewise. * libio/iofputws_u.c (fputws_unlocked): Likewise. * libio/iofread_u.c (fread_unlocked): Likewise. * libio/iofwrite_u.c (fwrite_unlocked): Likewise. * libio/iovswscanf.c (vswscanf): Likewise. * libio/putwc_u.c (putwc_unlocked): Likewise. * libio/iofputs.c: Use libc_hidden_def instead of INTDEF. * malloc/malloc.c: Redirect fwrite calls to _IO_fwrite. * malloc/mtrace.c: Likewise. * sunrpc/clnt_perr.c: Remove fputs macro. * sunrpc/svc_simple.c: Likewise. * sunrpc/svc_tcp.c: Likewise. * sunrpc/svc_udp.c: Likewise. * sunrpc/xdr_rec.c: Likewise. * sunrpc/xdr_ref.c: Likewise. * iconv/Makefile: Add CPPFLAGS definitions with -DNOT_in_libc for iconv_prog, linereader, and charmap-dir. * locale/Makefile: Likewise for locale and charmap-dir. * malloc/Makefile: Likewise for memusagestat. * nscd/Makefile: Likewise for nscd, nscd_conf, and dbg_log. * sunrpc/Makefile: Likewise for rpc_main. * sysdeps/unix/sysv/linux/Makefile: Likewise for lddlibc4. * timezone/Makefile: Likewise for zic. * stdio-common/perror.c: Avoid multiple calls to fileno_unlocked.
102 lines
4.6 KiB
C
102 lines
4.6 KiB
C
#include <libio.h>
|
|
|
|
/* These emulate stdio functionality, but with a different name
|
|
(_IO_ungetc instead of ungetc), and using _IO_FILE instead of FILE. */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int _IO_fclose __P((_IO_FILE*));
|
|
extern int _IO_new_fclose __P((_IO_FILE*));
|
|
extern int _IO_old_fclose __P((_IO_FILE*));
|
|
extern _IO_FILE *_IO_fdopen __P((int, const char*));
|
|
extern _IO_FILE *_IO_old_fdopen __P((int, const char*));
|
|
extern _IO_FILE *_IO_new_fdopen __P((int, const char*));
|
|
extern int _IO_fflush __P((_IO_FILE*));
|
|
extern int _IO_fgetpos __P((_IO_FILE*, _IO_fpos_t*));
|
|
extern int _IO_fgetpos64 __P((_IO_FILE*, _IO_fpos64_t*));
|
|
extern char* _IO_fgets __P((char*, int, _IO_FILE*));
|
|
extern _IO_FILE *_IO_fopen __P((const char*, const char*));
|
|
extern _IO_FILE *_IO_old_fopen __P((const char*, const char*));
|
|
extern _IO_FILE *_IO_new_fopen __P((const char*, const char*));
|
|
extern _IO_FILE *_IO_fopen64 __P((const char*, const char*));
|
|
extern _IO_FILE *__fopen_internal __P((const char*, const char*, int));
|
|
extern _IO_FILE *__fopen_maybe_mmap __P((_IO_FILE *));
|
|
extern int _IO_fprintf __P((_IO_FILE*, const char*, ...));
|
|
extern int _IO_fputs __P((const char*, _IO_FILE*));
|
|
libc_hidden_proto (_IO_fputs)
|
|
extern int _IO_fsetpos __P((_IO_FILE*, const _IO_fpos_t *));
|
|
extern int _IO_fsetpos64 __P((_IO_FILE*, const _IO_fpos64_t *));
|
|
extern long int _IO_ftell __P((_IO_FILE*));
|
|
extern _IO_size_t _IO_fread __P((void*, _IO_size_t, _IO_size_t, _IO_FILE*));
|
|
extern _IO_size_t _IO_fwrite __P((const void*,
|
|
_IO_size_t, _IO_size_t, _IO_FILE*));
|
|
extern char* _IO_gets __P((char*));
|
|
extern void _IO_perror __P((const char*));
|
|
extern int _IO_printf __P((const char*, ...));
|
|
extern int _IO_puts __P((const char*));
|
|
extern int _IO_scanf __P((const char*, ...));
|
|
extern void _IO_setbuffer __P((_IO_FILE *, char*, _IO_size_t));
|
|
extern int _IO_setvbuf __P((_IO_FILE*, char*, int, _IO_size_t));
|
|
extern int _IO_sscanf __P((const char*, const char*, ...));
|
|
extern int _IO_sprintf __P((char *, const char*, ...));
|
|
extern int _IO_ungetc __P((int, _IO_FILE*));
|
|
extern int _IO_vsscanf __P((const char *, const char *, _IO_va_list));
|
|
extern int _IO_vsprintf __P((char*, const char*, _IO_va_list));
|
|
extern int _IO_vswprintf __P((wchar_t*, _IO_size_t, const wchar_t*,
|
|
_IO_va_list));
|
|
|
|
struct obstack;
|
|
extern int _IO_obstack_vprintf __P ((struct obstack *, const char *,
|
|
_IO_va_list));
|
|
extern int _IO_obstack_printf __P ((struct obstack *, const char *, ...));
|
|
#ifndef _IO_pos_BAD
|
|
#define _IO_pos_BAD ((_IO_off64_t)(-1))
|
|
#endif
|
|
#define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN))
|
|
#define _IO_fseek(__fp, __offset, __whence) \
|
|
(INTUSE(_IO_seekoff)(__fp, __offset, __whence, _IOS_INPUT|_IOS_OUTPUT) \
|
|
== _IO_pos_BAD ? EOF : 0)
|
|
#define _IO_rewind(FILE) \
|
|
(void)INTUSE(_IO_seekoff)(FILE, 0, 0, _IOS_INPUT|_IOS_OUTPUT)
|
|
#define _IO_vprintf(FORMAT, ARGS) \
|
|
INTUSE(_IO_vfprintf) (_IO_stdout, FORMAT, ARGS)
|
|
#define _IO_freopen(FILENAME, MODE, FP) \
|
|
(INTUSE(_IO_file_close_it)(FP), \
|
|
INTUSE(_IO_file_fopen)(FP, FILENAME, MODE, 1))
|
|
#define _IO_old_freopen(FILENAME, MODE, FP) \
|
|
(_IO_old_file_close_it (FP), _IO_old_file_fopen(FP, FILENAME, MODE))
|
|
#define _IO_freopen64(FILENAME, MODE, FP) \
|
|
(INTUSE(_IO_file_close_it)(FP), \
|
|
INTUSE(_IO_file_fopen)(FP, FILENAME, MODE, 0))
|
|
#define _IO_fileno(FP) ((FP)->_fileno)
|
|
extern _IO_FILE* _IO_popen __P((const char*, const char*));
|
|
extern _IO_FILE* _IO_new_popen __P((const char*, const char*));
|
|
extern _IO_FILE* _IO_old_popen __P((const char*, const char*));
|
|
extern int __new_pclose __P((_IO_FILE *));
|
|
extern int __old_pclose __P((_IO_FILE *));
|
|
#define _IO_pclose _IO_fclose
|
|
#define _IO_setbuf(_FP, _BUF) INTUSE(_IO_setbuffer)(_FP, _BUF, _IO_BUFSIZ)
|
|
#define _IO_setlinebuf(_FP) INTUSE(_IO_setvbuf)(_FP, NULL, 1, 0)
|
|
|
|
_IO_FILE *__new_freopen __P ((const char *, const char *, _IO_FILE *));
|
|
_IO_FILE *__old_freopen __P ((const char *, const char *, _IO_FILE *));
|
|
|
|
/* Prototype for functions with alternative entry point. */
|
|
extern void _IO_setbuffer_internal __P((_IO_FILE *, char*, _IO_size_t));
|
|
extern _IO_size_t _IO_fread_internal __P((void*, _IO_size_t, _IO_size_t,
|
|
_IO_FILE*));
|
|
extern _IO_FILE *_IO_fdopen_internal __P((int, const char*));
|
|
extern int _IO_vsprintf_internal __P((char*, const char*, _IO_va_list));
|
|
extern int _IO_fflush_internal __P((_IO_FILE*));
|
|
extern _IO_size_t _IO_fwrite_internal __P((const void*, _IO_size_t,
|
|
_IO_size_t, _IO_FILE*));
|
|
extern long int _IO_ftell_internal __P((_IO_FILE*));
|
|
extern int _IO_fputs_internal __P((const char*, _IO_FILE*));
|
|
extern int _IO_setvbuf_internal __P((_IO_FILE*, char*, int, _IO_size_t));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|