stdioP.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:5k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* stdioP.h - header file for ANSI stdio library */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,14nov92,jcf  removed redundant prototypes.
  7. 01c,22sep92,rrr  added support for c++
  8. 01b,02aug92,jcf  moved srget/swbuf prototypes to stdio.h.
  9. 01a,29jul92,jcf  added stdio internal routines to manage memory.
  10.     smb  taken from UCB stdio library.
  11. */
  12. #ifndef __INCstdioPh
  13. #define __INCstdioPh
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /*
  18. DESCRIPTION
  19.  * Copyright (c) 1990 The Regents of the University of California.
  20.  * All rights reserved.
  21.  *
  22.  * This code is derived from software contributed to Berkeley by
  23.  * Chris Torek.
  24.  *
  25.  * Redistribution and use in source and binary forms, with or without
  26.  * modification, are permitted provided that the following conditions
  27.  * are met:
  28.  * 1. Redistributions of source code must retain the above copyright
  29.  *    notice, this list of conditions and the following disclaimer.
  30.  * 2. Redistributions in binary form must reproduce the above copyright
  31.  *    notice, this list of conditions and the following disclaimer in the
  32.  *    documentation and/or other materials provided with the distribution.
  33.  * 3. All advertising materials mentioning features or use of this software
  34.  *    must display the following acknowledgement:
  35.  * This product includes software developed by the University of
  36.  * California, Berkeley and its contributors.
  37.  * 4. Neither the name of the University nor the names of its contributors
  38.  *    may be used to endorse or promote products derived from this software
  39.  *    without specific prior written permission.
  40.  *
  41.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  42.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  45.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51.  * SUCH DAMAGE.
  52.  *
  53.  * @(#)local.h 5.2 (Berkeley) 2/5/91
  54.  *
  55.  * Information local to this implementation of stdio,
  56.  * in particular, macros and private variables.
  57.  *
  58. SEE ALSO: American National Standard X3.159-1989
  59. */
  60. #include "stdio.h"
  61. /*
  62.  * This is a #define because the function is used internally and
  63.  * (unlike vfscanf) the name __svfscanf is guaranteed not to collide
  64.  * with a user function when _ANSI_SOURCE or _POSIX_SOURCE is defined.
  65.  */
  66. #define vfscanf __svfscanf
  67. /* Routines that are purely local to the implementation */
  68. #if defined(__STDC__) || defined(__cplusplus)
  69. extern STATUS stdioFpDestroy (FILE *fp);
  70. extern FILE * stdioFpCreate (void);
  71. extern char * fgetline (FILE *, size_t *);
  72. extern int fpurge (FILE *);
  73. extern int pclose (FILE *);
  74. extern FILE * popen (const char *, const char *);
  75. extern char * tempnam (const char *, const char *);
  76. extern int snprintf (char *, size_t, const char *, ...);
  77. extern int vsnprintf (char *, size_t, const char *, va_list);
  78. extern int vscanf (const char *, va_list);
  79. extern int vsscanf (const char *, const char *, va_list);
  80. extern int __svfscanf (FILE *, const char *, va_list);
  81. extern int __sflush (FILE *);
  82. extern FILE * __sfp (void);
  83. extern int __srefill (FILE *);
  84. extern int __sread (FILE *, char *, int);
  85. extern int __swrite (FILE *, char const *, int);
  86. extern fpos_t __sseek (FILE *, fpos_t, int);
  87. extern int __sclose (FILE *);
  88. extern void __sinit (void);
  89. extern void __smakebuf (FILE *);
  90. extern int __swsetup (FILE *);
  91. extern int __sflags (const char *, int *);
  92. #else /* __STDC__ */
  93. extern STATUS stdioFpDestroy ();
  94. extern FILE * stdioFpCreate ();
  95. extern char * fgetline ();
  96. extern int fpurge ();
  97. extern int pclose ();
  98. extern FILE * popen ();
  99. extern char * tempnam ();
  100. extern int snprintf ();
  101. extern int vsnprintf ();
  102. extern int vscanf ();
  103. extern int vsscanf ();
  104. extern int __svfscanf ();
  105. extern int __sflush ();
  106. extern FILE * __sfp ();
  107. extern int __srefill ();
  108. extern int __sread ();
  109. extern int __swrite ();
  110. extern fpos_t __sseek ();
  111. extern int __sclose ();
  112. extern void __sinit ();
  113. extern void __smakebuf ();
  114. extern int __swsetup ();
  115. extern int __sflags ();
  116. #endif /* __STDC__ */
  117. /* Return true iff the given FILE cannot be written now.  */
  118. #define cantwrite(fp) 
  119. ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && 
  120.  __swsetup(fp))
  121. /* Test whether the given stdio file has an active ungetc buffer;
  122.  * release such a buffer, without restoring ordinary unread data.
  123.  */
  124. #define HASUB(fp) ((fp)->_ub._base != NULL)
  125. #define FREEUB(fp) 
  126.     {
  127.     if ((fp)->_ub._base != (fp)->_ubuf)
  128. free ((char *)(fp)->_ub._base);
  129.     (fp)->_ub._base = NULL;
  130.     }
  131. /* test for an fgetline() buffer.  */
  132. #define HASLB(fp) ((fp)->_lb._base != NULL)
  133. #define FREELB(fp) 
  134.     {
  135.     free ((char *)(fp)->_lb._base);
  136.     (fp)->_lb._base = NULL;
  137.     }
  138. #ifdef __cplusplus
  139. }
  140. #endif
  141. #endif /* __INCstdioPh */