home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-bin.lha / lib / g++-include / libioP.h < prev    next >
C/C++ Source or Header  |  1996-10-12  |  20KB  |  482 lines

  1. /* 
  2. Copyright (C) 1993 Free Software Foundation
  3.  
  4. This file is part of the GNU IO Library.  This library is free
  5. software; you can redistribute it and/or modify it under the
  6. terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this library; see the file COPYING.  If not, write to the Free
  17. Software Foundation, 59 Temple Place - Suite 330, Boston, 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 not cause
  21. the resulting executable to be covered by the GNU General Public License.
  22. This exception does not however invalidate any other reasons why
  23. the executable file might be covered by the GNU General Public License. */
  24.  
  25. #include <errno.h>
  26. #ifndef errno
  27. extern int errno;
  28. #endif
  29.  
  30. #include "iolibio.h"
  31.  
  32. #if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(__cplusplus)
  33. /* All known AIX compilers implement these things (but don't always
  34.    define __STDC__).  The RISC/OS MIPS compiler defines these things
  35.    in SVR4 mode, but does not define __STDC__.  */
  36.  
  37. #define    AND        ,
  38. #define    DEFUN(name, arglist, args)    name(args)
  39. #define    DEFUN_VOID(name)        name(void)
  40.  
  41. #else    /* Not ANSI C.  */
  42.  
  43. #define    AND        ;
  44. #ifndef const /* some systems define it in header files for non-ansi mode */
  45. #define    const
  46. #endif
  47. #define    DEFUN(name, arglist, args)    name arglist args;
  48. #define    DEFUN_VOID(name)        name()
  49. #endif    /* ANSI C.  */
  50.  
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54.  
  55. #define _IO_seek_set 0
  56. #define _IO_seek_cur 1
  57. #define _IO_seek_end 2
  58.  
  59. /* THE JUMPTABLE FUNCTIONS.
  60.  
  61.  * The _IO_FILE type is used to implement the FILE type in GNU libc,
  62.  * as well as the streambuf class in GNU iostreams for C++.
  63.  * These are all the same, just used differently.
  64.  * An _IO_FILE (or FILE) object is allows followed by a pointer to
  65.  * a jump table (of pointers to functions).  The pointer is accessed
  66.  * with the _IO_JUMPS macro.  The jump table has a eccentric format,
  67.  * so as to be compatible with the layout of a C++ virtual function table.
  68.  * (as implemented by g++).  When a pointer to a steambuf object is
  69.  * coerced to an (_IO_FILE*), then _IO_JUMPS on the result just
  70.  * happens to point to the virtual function table of the streambuf.
  71.  * Thus the _IO_JUMPS function table used for C stdio/libio does
  72.  * double duty as the virtual functiuon table for C++ streambuf.
  73.  *
  74.  * The entries in the _IO_JUMPS function table (and hence also the
  75.  * virtual functions of a streambuf) are described below.
  76.  * The first parameter of each function entry is the _IO_FILE/streambuf
  77.  * object being acted on (i.e. the 'this' parameter).
  78.  */
  79.  
  80. #define _IO_JUMPS(THIS) ((struct _IO_FILE_plus*)(THIS))->vtable
  81. /* These macros will change when we re-implement vtables to use "thunks"! */
  82. #define JUMP_FIELD(TYPE, NAME) struct { short delta1, delta2; TYPE pfn; } NAME
  83. #define JUMP0(FUNC, THIS) _IO_JUMPS(THIS)->FUNC.pfn(THIS)
  84. #define JUMP1(FUNC, THIS, X1) _IO_JUMPS(THIS)->FUNC.pfn(THIS, X1)
  85. #define JUMP2(FUNC, THIS, X1, X2) _IO_JUMPS(THIS)->FUNC.pfn(THIS, X1, X2)
  86. #define JUMP3(FUNC, THIS, X1,X2,X3) _IO_JUMPS(THIS)->FUNC.pfn(THIS, X1,X2, X3)
  87. #define JUMP_INIT(NAME, VALUE) {0, 0, VALUE}
  88. #define JUMP_INIT_DUMMY JUMP_INIT(dummy, 0)
  89.  
  90. /* The 'finish' function does any final cleaning up of an _IO_FILE object.
  91.    It does not delete (free) it, but does everything else to finalize it/
  92.    It matches the streambuf::~streambuf virtual destructor.  */
  93. typedef void (*_IO_finish_t) __P((_IO_FILE*)); /* finalize */
  94. #define _IO_FINISH(FP) JUMP0(__finish, FP)
  95.  
  96. /* The 'overflow' hook flushes the buffer.
  97.    The second argument is a character, or EOF.
  98.    It matches the streambuf::overflow virtual function. */
  99. typedef int (*_IO_overflow_t) __P((_IO_FILE*, int));
  100. #define _IO_OVERFLOW(FP, CH) JUMP1(__overflow, FP, CH)
  101.  
  102. /* The 'underflow' hook tries to fills the get buffer.
  103.    It returns the next character (as an unsigned char) or EOF.  The next
  104.    character remains in the get buffer, and the get postion is not changed.
  105.    It matches the streambuf::underflow virtual function. */
  106. typedef int (*_IO_underflow_t) __P((_IO_FILE*));
  107. #define _IO_UNDERFLOW(FP) JUMP0(__underflow, FP)
  108.  
  109. /* The 'uflow' hook returns the next character in the input stream
  110.    (cast to unsigned char), and increments the read position;
  111.    EOF is returned on failure.
  112.    It matches the streambuf::uflow virtual function, which is not in the
  113.    cfront implementation, but was added to C++ by the ANSI/ISO committee. */
  114. #define _IO_UFLOW(FP) JUMP0(__uflow, FP)
  115.  
  116. /* The 'pbackfail' hook handles backing up.
  117.    It matches the streambuf::pbackfail virtual function. */
  118. typedef int (*_IO_pbackfail_t) __P((_IO_FILE*, int));
  119. #define _IO_PBACKFAIL(FP, CH) JUMP1(__pbackfail, FP, CH)
  120.  
  121. /* The 'xsputn' hook writes upto N characters from buffer DATA.
  122.    Returns the number of character actually written.
  123.    It matches the streambuf::xsputn virtual function. */
  124. typedef _IO_size_t (*_IO_xsputn_t)
  125.   __P((_IO_FILE *FP, const void *DATA, _IO_size_t N));
  126. #define _IO_XSPUTN(FP, DATA, N) JUMP2(__xsputn, FP, DATA, N)
  127.  
  128. /* The 'xsgetn' hook reads upto N characters into buffer DATA.
  129.    Returns the number of character actually read.
  130.    It matches the streambuf::xsgetn virtual function. */
  131. typedef _IO_size_t (*_IO_xsgetn_t) __P((_IO_FILE*FP, void*DATA, _IO_size_t N));
  132. #define _IO_XSGETN(FP, DATA, N) JUMP2(__xsgetn, FP, DATA, N)
  133.  
  134. /* The 'seekoff' hook moves the stream position to a new position
  135.    relative to the start of the file (if DIR==0), the current position
  136.    (MODE==1), or the end of the file (MODE==2).
  137.    It matches the streambuf::seekoff virtual function.
  138.    It is also used for the ANSI fseek function. */
  139. typedef _IO_fpos_t (*_IO_seekoff_t)
  140.   __P((_IO_FILE* FP, _IO_off_t OFF, int DIR, int MODE));
  141. #define _IO_SEEKOFF(FP, OFF, DIR, MODE) JUMP3(__seekoff, FP, OFF, DIR, MODE)
  142.  
  143. /* The 'seekpos' hook also moves the stream position,
  144.    but to an absolute position given by a fpos_t (seekpos).
  145.    It matches the streambuf::seekpos virtual function.
  146.    It is also used for the ANSI fgetpos and fsetpos functions.  */
  147. /* The _IO_seek_cur and _IO_seek_end options are not allowed. */
  148. typedef _IO_fpos_t (*_IO_seekpos_t) __P((_IO_FILE*, _IO_fpos_t, int));
  149. #define _IO_SEEKPOS(FP, POS, FLAGS) JUMP2(__seekpos, FP, POS, FLAGS)
  150.  
  151. /* The 'setbuf' hook gives a buffer to the file.
  152.    It matches the streambuf::setbuf virtual function. */
  153. typedef _IO_FILE* (*_IO_setbuf_t) __P((_IO_FILE*, char *, _IO_ssize_t));
  154. #define _IO_SETBUF(FP, BUFFER, LENGTH) JUMP2(__setbuf, FP, BUFFER, LENGTH)
  155.  
  156. /* The 'sync' hook attempts to synchronize the internal data structures
  157.    of the file with the external state.
  158.    It matches the streambuf::sync virtual function. */
  159. typedef int (*_IO_sync_t) __P((_IO_FILE*));
  160. #define _IO_SYNC(FP) JUMP0(__sync, FP)
  161.  
  162. /* The 'doallocate' hook is used to tell the file to allocate a buffer.
  163.    It matches the streambuf::doallocate virtual function, which is not
  164.    in the ANSI/ISO C++ standard, but is part traditional implementations. */
  165. typedef int (*_IO_doallocate_t) __P((_IO_FILE*));
  166. #define _IO_DOALLOCATE(FP) JUMP0(__doallocate, FP)
  167.  
  168. /* The following four hooks (sysread, syswrite, sysclose, sysseek, and
  169.    sysstat) are low-level hooks specific to this implementation.
  170.    There is no correspondance in the ANSI/ISO C++ standard library.
  171.    The hooks basically correspond to the Unix system functions
  172.    (read, write, close, lseek, and stat) except that a _IO_FILE*
  173.    parameter is used instead of a integer file descriptor;  the default
  174.    implementation used for normal files just calls those functions.
  175.    The advantage of overriding these functions instead of the higher-level
  176.    ones (underflow, overflow etc) is that you can leave all the buffering
  177.    higher-level functions.  */
  178.  
  179. /* The 'sysread' hook is used to read data from the external file into
  180.    an existing buffer.  It generalizes the Unix read(2) function.
  181.    It matches the streambuf::sys_read virtual function, which is
  182.    specific to this implementaion. */
  183. typedef _IO_ssize_t (*_IO_read_t) __P((_IO_FILE*, void*, _IO_ssize_t));
  184. #define _IO_SYSREAD(FP, DATA, LEN) JUMP2(__read, FP, DATA, LEN)
  185.  
  186. /* The 'syswrite' hook is used to write data from an existing buffer
  187.    to an external file.  It generalizes the Unix write(2) function.
  188.    It matches the streambuf::sys_write virtual function, which is
  189.    specific to this implementaion. */
  190. typedef _IO_ssize_t (*_IO_write_t) __P((_IO_FILE*,const void*,_IO_ssize_t));
  191. #define _IO_SYSWRITE(FP, DATA, LEN) JUMP2(__write, FP, DATA, LEN)
  192.  
  193. /* The 'sysseek' hook is used to re-position an external file.
  194.    It generalizes the Unix lseek(2) function.
  195.    It matches the streambuf::sys_seek virtual function, which is
  196.    specific to this implementaion. */
  197. typedef _IO_fpos_t (*_IO_seek_t) __P((_IO_FILE*, _IO_off_t, int));
  198. #define _IO_SYSSEEK(FP, OFFSET, MODE) JUMP2(__seek, FP, OFFSET, MODE)
  199.  
  200. /* The 'sysclose' hook is used to finalize (close, finish up) an
  201.    external file.  It generalizes the Unix close(2) function.
  202.    It matches the streambuf::sys_close virtual function, which is
  203.    specific to this implementation. */
  204. typedef int (*_IO_close_t) __P((_IO_FILE*)); /* finalize */
  205. #define _IO_SYSCLOSE(FP) JUMP0(__close, FP)
  206.  
  207. /* The 'sysstat' hook is used to get information about an external file
  208.    into a struct stat buffer.  It generalizes the Unix fstat(2) call.
  209.    It matches the streambuf::sys_stat virtual function, which is
  210.    specific to this implementaion. */
  211. typedef int (*_IO_stat_t) __P((_IO_FILE*, void*));
  212. #define _IO_SYSSTAT(FP, BUF) JUMP1(__stat, FP, BUF)
  213.  
  214.  
  215. #define _IO_CHAR_TYPE char /* unsigned char ? */
  216. #define _IO_INT_TYPE int
  217.  
  218. struct _IO_jump_t {
  219.     JUMP_FIELD(_G_size_t, __dummy);
  220.     JUMP_FIELD(_IO_finish_t, __finish);
  221.     JUMP_FIELD(_IO_overflow_t, __overflow);
  222.     JUMP_FIELD(_IO_underflow_t, __underflow);
  223.     JUMP_FIELD(_IO_underflow_t, __uflow);
  224.     JUMP_FIELD(_IO_pbackfail_t, __pbackfail);
  225.     /* showmany */
  226.     JUMP_FIELD(_IO_xsputn_t, __xsputn);
  227.     JUMP_FIELD(_IO_xsgetn_t, __xsgetn);
  228.     JUMP_FIELD(_IO_seekoff_t, __seekoff);
  229.     JUMP_FIELD(_IO_seekpos_t, __seekpos);
  230.     JUMP_FIELD(_IO_setbuf_t, __setbuf);
  231.     JUMP_FIELD(_IO_sync_t, __sync);
  232.     JUMP_FIELD(_IO_doallocate_t, __doallocate);
  233.     JUMP_FIELD(_IO_read_t, __read);
  234.     JUMP_FIELD(_IO_write_t, __write);
  235.     JUMP_FIELD(_IO_seek_t, __seek);
  236.     JUMP_FIELD(_IO_close_t, __close);
  237.     JUMP_FIELD(_IO_stat_t, __stat);
  238. #if 0
  239.     get_column;
  240.     set_column;
  241. #endif
  242. };
  243.  
  244. /* We always allocate an extra word following an _IO_FILE.
  245.    This contains a pointer to the function jump table used.
  246.    This is for compatibility with C++ streambuf; the word can
  247.    be used to smash to a pointer to a virtual function table. */
  248.  
  249. struct _IO_FILE_plus {
  250.   _IO_FILE file;
  251.   const struct _IO_jump_t *vtable;
  252. };
  253.  
  254. /* Generic functions */
  255.  
  256. extern int _IO_switch_to_get_mode __P((_IO_FILE*));
  257. extern void _IO_init __P((_IO_FILE*, int));
  258. extern int _IO_sputbackc __P((_IO_FILE*, int));
  259. extern int _IO_sungetc __P((_IO_FILE*));
  260. extern void _IO_un_link __P((_IO_FILE*));
  261. extern void _IO_link_in __P((_IO_FILE *));
  262. extern void _IO_doallocbuf __P((_IO_FILE*));
  263. extern void _IO_unsave_markers __P((_IO_FILE*));
  264. extern void _IO_setb __P((_IO_FILE*, char*, char*, int));
  265. extern unsigned _IO_adjust_column __P((unsigned, const char *, int));
  266. #define _IO_sputn(__fp, __s, __n) _IO_XSPUTN(__fp, __s, __n)
  267.  
  268. /* Marker-related function. */
  269.  
  270. extern void _IO_init_marker __P((struct _IO_marker *, _IO_FILE *));
  271. extern void _IO_remove_marker __P((struct _IO_marker*));
  272. extern int _IO_marker_difference __P((struct _IO_marker *, struct _IO_marker *));
  273. extern int _IO_marker_delta __P((struct _IO_marker *));
  274. extern int _IO_seekmark __P((_IO_FILE *, struct _IO_marker *, int));
  275.  
  276. /* Default jumptable functions. */
  277.  
  278. extern int _IO_default_underflow __P((_IO_FILE*));
  279. extern int _IO_default_uflow __P((_IO_FILE*));
  280. extern int _IO_default_doallocate __P((_IO_FILE*));
  281. extern void _IO_default_finish __P((_IO_FILE *));
  282. extern int _IO_default_pbackfail __P((_IO_FILE*, int));
  283. extern _IO_FILE* _IO_default_setbuf __P((_IO_FILE *, char*, _IO_ssize_t));
  284. extern _IO_size_t _IO_default_xsputn __P((_IO_FILE *, const void*, _IO_size_t));
  285. extern _IO_size_t _IO_default_xsgetn __P((_IO_FILE *, void*, _IO_size_t));
  286. extern _IO_fpos_t _IO_default_seekoff __P((_IO_FILE*, _IO_off_t, int, int));
  287. extern _IO_fpos_t _IO_default_seekpos __P((_IO_FILE*, _IO_fpos_t, int));
  288. extern _IO_ssize_t _IO_default_write __P((_IO_FILE*,const void*,_IO_ssize_t));
  289. extern _IO_ssize_t _IO_default_read __P((_IO_FILE*, void*, _IO_ssize_t));
  290. extern int _IO_default_stat __P((_IO_FILE*, void*));
  291. extern _IO_fpos_t _IO_default_seek __P((_IO_FILE*, _IO_off_t, int));
  292. extern int _IO_default_sync __P((_IO_FILE*));
  293. #define _IO_default_close ((_IO_close_t)_IO_default_sync)
  294.  
  295. extern struct _IO_jump_t _IO_file_jumps;
  296. extern struct _IO_jump_t _IO_streambuf_jumps;
  297. extern struct _IO_jump_t _IO_proc_jumps;
  298. extern struct _IO_jump_t _IO_str_jumps;
  299. extern int _IO_do_write __P((_IO_FILE*, const char*, _IO_size_t));
  300. extern int _IO_flush_all __P((void));
  301. extern void _IO_cleanup __P((void));
  302. extern void _IO_flush_all_linebuffered __P((void));
  303.  
  304. #define _IO_do_flush(_f) \
  305.   _IO_do_write(_f, (_f)->_IO_write_base, \
  306.            (_f)->_IO_write_ptr-(_f)->_IO_write_base)
  307. #define _IO_in_put_mode(_fp) ((_fp)->_flags & _IO_CURRENTLY_PUTTING)
  308. #define _IO_mask_flags(fp, f, mask) \
  309.        ((fp)->_flags = ((fp)->_flags & ~(mask)) | ((f) & (mask)))
  310. #define _IO_setg(fp, eb, g, eg)  ((fp)->_IO_read_base = (eb),\
  311.     (fp)->_IO_read_ptr = (g), (fp)->_IO_read_end = (eg))
  312. #define _IO_setp(__fp, __p, __ep) \
  313.        ((__fp)->_IO_write_base = (__fp)->_IO_write_ptr = __p, (__fp)->_IO_write_end = (__ep))
  314. #define _IO_have_backup(fp) ((fp)->_IO_save_base != NULL)
  315. #define _IO_in_backup(fp) ((fp)->_flags & _IO_IN_BACKUP)
  316. #define _IO_have_markers(fp) ((fp)->_markers != NULL)
  317. #define _IO_blen(fp) ((fp)->_IO_buf_end - (fp)->_IO_buf_base)
  318.  
  319. /* Jumptable functions for files. */
  320.  
  321. extern int _IO_file_doallocate __P((_IO_FILE*));
  322. extern _IO_FILE* _IO_file_setbuf __P((_IO_FILE *, char*, _IO_ssize_t));
  323. extern _IO_fpos_t _IO_file_seekoff __P((_IO_FILE*, _IO_off_t, int, int));
  324. extern _IO_size_t _IO_file_xsputn __P((_IO_FILE*,const void*,_IO_size_t));
  325. extern int _IO_file_stat __P((_IO_FILE*, void*));
  326. extern int _IO_file_close __P((_IO_FILE*));
  327. extern int _IO_file_underflow __P((_IO_FILE *));
  328. extern int _IO_file_overflow __P((_IO_FILE *, int));
  329. #define _IO_file_is_open(__fp) ((__fp)->_fileno >= 0)
  330. extern void _IO_file_init __P((_IO_FILE*));
  331. extern _IO_FILE* _IO_file_attach __P((_IO_FILE*, int));
  332. extern _IO_FILE* _IO_file_fopen __P((_IO_FILE*, const char*, const char*));
  333. extern _IO_ssize_t _IO_file_write __P((_IO_FILE*,const void*,_IO_ssize_t));
  334. extern _IO_ssize_t _IO_file_read __P((_IO_FILE*, void*, _IO_ssize_t));
  335. extern int _IO_file_sync __P((_IO_FILE*));
  336. extern int _IO_file_close_it __P((_IO_FILE*));
  337. extern _IO_fpos_t _IO_file_seek __P((_IO_FILE *, _IO_off_t, int));
  338. extern void _IO_file_finish __P((_IO_FILE*));
  339.  
  340. /* Other file functions. */
  341. extern _IO_FILE* _IO_file_attach __P((_IO_FILE *, int));
  342.  
  343. /* Jumptable functions for proc_files. */
  344. extern _IO_FILE* _IO_proc_open __P((_IO_FILE*, const char*, const char *));
  345. extern int _IO_proc_close __P((_IO_FILE*));
  346.  
  347. /* Jumptable functions for strfiles. */
  348. extern int _IO_str_underflow __P((_IO_FILE*));
  349. extern int _IO_str_overflow __P((_IO_FILE *, int));
  350. extern int _IO_str_pbackfail __P((_IO_FILE*, int));
  351. extern _IO_fpos_t _IO_str_seekoff __P((_IO_FILE*,_IO_off_t,int,int));
  352.  
  353. /* Other strfile functions */
  354. extern void _IO_str_init_static __P((_IO_FILE *, char*, int, char*));
  355. extern void _IO_str_init_readonly __P((_IO_FILE *, const char*, int));
  356. extern _IO_ssize_t _IO_str_count __P ((_IO_FILE*));
  357.  
  358. extern _IO_size_t _IO_getline __P((_IO_FILE*,char*,_IO_size_t,int,int));
  359. extern _IO_ssize_t _IO_getdelim __P((char**, _IO_size_t*, int, _IO_FILE*));
  360. extern double _IO_strtod __P((const char *, char **));
  361. extern char * _IO_dtoa __P((double __d, int __mode, int __ndigits,
  362.                 int *__decpt, int *__sign, char **__rve));
  363. extern int _IO_outfloat __P((double __value, _IO_FILE *__sb, int __type,
  364.                  int __width, int __precision, int __flags,
  365.                  int __sign_mode, int __fill));
  366.  
  367. extern _IO_FILE *_IO_list_all;
  368. extern void (*_IO_cleanup_registration_needed) __P ((void));
  369.  
  370. #ifndef EOF
  371. #define EOF (-1)
  372. #endif
  373. #ifndef NULL
  374. #if !defined(__cplusplus) || defined(__GNUC__)
  375. #define NULL ((void*)0)
  376. #else
  377. #define NULL (0)
  378. #endif
  379. #endif
  380.  
  381. #define FREE_BUF(_B) free(_B)
  382. #define ALLOC_BUF(_S) (char*)malloc(_S)
  383.  
  384. #ifndef OS_FSTAT
  385. #define OS_FSTAT fstat
  386. #endif
  387. struct stat;
  388. extern _IO_ssize_t _IO_read __P((int, void*, _IO_size_t));
  389. extern _IO_ssize_t _IO_write __P((int, const void*, _IO_size_t));
  390. extern _IO_off_t _IO_lseek __P((int, _IO_off_t, int));
  391. extern int _IO_close __P((int));
  392. extern int _IO_fstat __P((int, struct stat *));
  393.  
  394. /* Operations on _IO_fpos_t.
  395.    Normally, these are trivial, but we provide hooks for configurations
  396.    where an _IO_fpos_t is a struct.
  397.    Note that _IO_off_t must be an integral type. */
  398.  
  399. /* _IO_pos_BAD is an _IO_fpos_t value indicating error, unknown, or EOF. */
  400. #ifndef _IO_pos_BAD
  401. #define _IO_pos_BAD ((_IO_fpos_t)(-1))
  402. #endif
  403. /* _IO_pos_as_off converts an _IO_fpos_t value to an _IO_off_t value. */
  404. #ifndef _IO_pos_as_off
  405. #define _IO_pos_as_off(__pos) ((_IO_off_t)(__pos))
  406. #endif
  407. /* _IO_pos_adjust adjust an _IO_fpos_t by some number of bytes. */
  408. #ifndef _IO_pos_adjust
  409. #define _IO_pos_adjust(__pos, __delta) ((__pos) += (__delta))
  410. #endif
  411. /* _IO_pos_0 is an _IO_fpos_t value indicating beginning of file. */
  412. #ifndef _IO_pos_0
  413. #define _IO_pos_0 ((_IO_fpos_t)0)
  414. #endif
  415.  
  416. #ifdef __cplusplus
  417. }
  418. #endif
  419.  
  420. /* check following! */
  421. #define FILEBUF_LITERAL(CHAIN, FLAGS, FD) \
  422.        { _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+FLAGS, \
  423.          0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD}
  424.  
  425. /* VTABLE_LABEL defines NAME as of the CLASS class.
  426.    CNLENGTH is strlen(#CLASS).  */
  427. #ifdef __GNUC__
  428. #if _G_VTABLE_LABEL_HAS_LENGTH
  429. #define VTABLE_LABEL(NAME, CLASS, CNLENGTH) \
  430.   extern char NAME[] asm (_G_VTABLE_LABEL_PREFIX #CNLENGTH #CLASS);
  431. #else
  432. #define VTABLE_LABEL(NAME, CLASS, CNLENGTH) \
  433.   extern char NAME[] asm (_G_VTABLE_LABEL_PREFIX #CLASS);
  434. #endif
  435. #endif /* __GNUC__ */
  436.  
  437. #if !defined(builtinbuf_vtable) && defined(__cplusplus)
  438. #ifdef __GNUC__
  439. VTABLE_LABEL(builtinbuf_vtable, builtinbuf, 10)
  440. #else
  441. #if _G_VTABLE_LABEL_HAS_LENGTH
  442. #define builtinbuf_vtable _G_VTABLE_LABEL_PREFIX_ID##10builtinbuf
  443. #else
  444. #define builtinbuf_vtable _G_VTABLE_LABEL_PREFIX_ID##builtinbuf
  445. #endif
  446. #endif
  447. #endif /* !defined(builtinbuf_vtable) && defined(__cplusplus) */
  448.  
  449. #if defined(__STDC__) || defined(__cplusplus)
  450. #define _IO_va_start(args, last) va_start(args, last)
  451. #else
  452. #define _IO_va_start(args, last) va_start(args)
  453. #endif
  454.  
  455. extern struct _IO_fake_stdiobuf _IO_stdin_buf, _IO_stdout_buf, _IO_stderr_buf;
  456.  
  457. #if 1
  458. #define COERCE_FILE(FILE) /* Nothing */
  459. #else
  460. /* This is part of the kludge for binary compatibility with old stdio. */
  461. #define COERCE_FILE(FILE) \
  462.   (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) == _OLD_MAGIC_MASK \
  463.     && (FILE) = *(FILE**)&((int*)fp)[1])
  464. #endif
  465.  
  466. #ifdef EINVAL
  467. #define MAYBE_SET_EINVAL errno = EINVAL
  468. #else
  469. #define MAYBE_SET_EINVAL /* nothing */
  470. #endif
  471.  
  472. #ifdef DEBUG
  473. #define CHECK_FILE(FILE,RET) \
  474.     if ((FILE) == NULL) { MAYBE_SET_EINVAL; return RET; } \
  475.     else { COERCE_FILE(FILE); \
  476.            if (((FILE)->_IO_file_flags & _IO_MAGIC_MASK) != _IO_MAGIC) \
  477.       { errno = EINVAL; return RET; }}
  478. #else
  479. #define CHECK_FILE(FILE,RET) \
  480.     COERCE_FILE(FILE)
  481. #endif
  482.