123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- /*****************************************************************************/
- /* STDIO.H v8.2.2 */
- /* */
- /* Copyright (c) 1993-2017 Texas Instruments Incorporated */
- /* http://www.ti.com/ */
- /* */
- /* Redistribution and use in source and binary forms, with or without */
- /* modification, are permitted provided that the following conditions */
- /* are met: */
- /* */
- /* Redistributions of source code must retain the above copyright */
- /* notice, this list of conditions and the following disclaimer. */
- /* */
- /* Redistributions in binary form must reproduce the above copyright */
- /* notice, this list of conditions and the following disclaimer in */
- /* the documentation and/or other materials provided with the */
- /* distribution. */
- /* */
- /* Neither the name of Texas Instruments Incorporated nor the names */
- /* of its contributors may be used to endorse or promote products */
- /* derived from this software without specific prior written */
- /* permission. */
- /* */
- /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
- /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
- /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
- /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
- /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
- /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
- /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
- /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
- /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
- /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
- /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
- /* */
- /*****************************************************************************/
- #ifndef _STDIO
- #define _STDIO
- #include <linkage.h>
- #include <stdarg.h>
- /*---------------------------------------------------------------------------*/
- /* Attributes are only available in relaxed ANSI mode. */
- /*---------------------------------------------------------------------------*/
- #ifndef __ATTRIBUTE
- #if __TI_STRICT_ANSI_MODE__
- #define __ATTRIBUTE(attr)
- #else
- #define __ATTRIBUTE(attr) __attribute__(attr)
- #endif
- #endif
- #ifdef __cplusplus
- //----------------------------------------------------------------------------
- // <cstdio> IS RECOMMENDED OVER <stdio.h>. <stdio.h> IS PROVIDED FOR
- // COMPATIBILITY WITH C AND THIS USAGE IS DEPRECATED IN C++
- //----------------------------------------------------------------------------
- extern "C" namespace std {
- #endif
- /****************************************************************************/
- /* TYPES THAT ANSI REQUIRES TO BE DEFINED */
- /****************************************************************************/
- #ifndef _SIZE_T
- #define _SIZE_T
- typedef __SIZE_T_TYPE__ size_t;
- #endif
- typedef struct {
- int fd; /* File descriptor */
- unsigned char* buf; /* Pointer to start of buffer */
- unsigned char* pos; /* Position in buffer */
- unsigned char* bufend; /* Pointer to end of buffer */
- unsigned char* buff_stop; /* Pointer to last read char in buffer */
- unsigned int flags; /* File status flags (see below) */
- } FILE;
- #ifndef _FPOS_T
- #define _FPOS_T
- typedef int fpos_t;
- #endif /* _FPOS_T */
- /****************************************************************************/
- /* DEVICE AND STREAM RELATED MACROS */
- /****************************************************************************/
- /****************************************************************************/
- /* MACROS THAT DEFINE AND USE FILE STATUS FLAGS */
- /****************************************************************************/
- #define _IOFBF 0x0001
- #define _IOLBF 0x0002
- #define _IONBF 0x0004
- #define _BUFFALOC 0x0008
- #define _MODER 0x0010
- #define _MODEW 0x0020
- #define _MODERW 0x0040
- #define _MODEA 0x0080
- #define _MODEBIN 0x0100
- #define _STATEOF 0x0200
- #define _STATERR 0x0400
- #define _UNGETC 0x0800
- #define _TMPFILE 0x1000
- #define _SET(_fp, _b) (((_fp)->flags) |= (_b))
- #define _UNSET(_fp, _b) (((_fp)->flags) &= ~(_b))
- #define _STCHK(_fp, _b) (((_fp)->flags) & (_b))
- #define _BUFFMODE(_fp) (((_fp)->flags) & (_IOFBF | _IOLBF | _IONBF))
- #define _ACCMODE(_fp) (((_fp)->flags) & (_MODER | _MODEW))
- /****************************************************************************/
- /* MACROS THAT ANSI REQUIRES TO BE DEFINED */
- /****************************************************************************/
- #define BUFSIZ 256
- #define FOPEN_MAX _NFILE
- #define FILENAME_MAX 256
- #define TMP_MAX 65535
- #ifdef __cplusplus
- #define stdin (&std::_ftable[0])
- #define stdout (&std::_ftable[1])
- #define stderr (&std::_ftable[2])
- #else
- #define stdin (&_ftable[0])
- #define stdout (&_ftable[1])
- #define stderr (&_ftable[2])
- #endif
- #define L_tmpnam _LTMPNAM
- #define SEEK_SET (0x0000)
- #define SEEK_CUR (0x0001)
- #define SEEK_END (0x0002)
- #ifndef NULL
- #define NULL 0
- #endif
- #ifndef EOF
- #define EOF (-1)
- #endif
- /******** END OF ANSI MACROS ************************************************/
- #define P_tmpdir "" /* Path for temp files */
- /****************************************************************************/
- /* DEVICE AND STREAM RELATED DATA STRUCTURES AND MACROS */
- /****************************************************************************/
- #define _NFILE 20 /* Max number of files open */
- #define _LTMPNAM 16 /* Length of temp name */
- extern _DATA_ACCESS FILE _ftable[_NFILE];
- extern _DATA_ACCESS char __TI_tmpnams[_NFILE][_LTMPNAM];
- /****************************************************************************/
- /* FUNCTION DEFINITIONS - ANSI */
- /****************************************************************************/
- /****************************************************************************/
- /* OPERATIONS ON FILES */
- /****************************************************************************/
- extern _CODE_ACCESS int remove(const char *_file);
- extern _CODE_ACCESS int rename(const char *_old, const char *_new);
- extern _CODE_ACCESS FILE *tmpfile(void);
- extern _CODE_ACCESS char *tmpnam(char *_s);
- /****************************************************************************/
- /* FILE ACCESS FUNCTIONS */
- /****************************************************************************/
- extern _CODE_ACCESS int fclose(FILE * __restrict _fp);
- extern _CODE_ACCESS FILE *fopen(const char * __restrict _fname,
- const char * __restrict _mode);
- extern _CODE_ACCESS FILE *freopen(const char * __restrict _fname,
- const char * __restrict _mode,
- FILE * __restrict _fp);
- extern _CODE_ACCESS void setbuf(FILE * __restrict _fp,
- char * __restrict _buf);
- extern _CODE_ACCESS int setvbuf(FILE * __restrict _fp,
- char * __restrict _buf,
- int _type, size_t _size);
- extern _CODE_ACCESS int fflush(FILE *_fp);
- /****************************************************************************/
- /* FORMATTED INPUT/OUTPUT FUNCTIONS */
- /****************************************************************************/
- extern _CODE_ACCESS int fprintf(FILE * __restrict _fp,
- const char * __restrict _format, ...)
- __ATTRIBUTE ((__format__ (__printf__, 2, 3)));
- extern _CODE_ACCESS int fscanf(FILE * __restrict _fp,
- const char * __restrict _fmt, ...)
- __ATTRIBUTE ((__format__ (__scanf__, 2, 3)));
- extern _CODE_ACCESS int printf(const char * __restrict _format, ...)
- __ATTRIBUTE ((__format__ (__printf__, 1, 2)));
- extern _CODE_ACCESS int scanf(const char * __restrict _fmt, ...)
- __ATTRIBUTE ((__format__ (__scanf__, 1, 2)));
- extern _CODE_ACCESS int sprintf(char * __restrict _string,
- const char * __restrict _format, ...)
- __ATTRIBUTE ((__format__ (__printf__, 2, 3)));
- extern _CODE_ACCESS int snprintf(char * __restrict _string, size_t _n,
- const char * __restrict _format, ...)
- __ATTRIBUTE ((__format__ (__printf__, 3, 4)));
- extern _CODE_ACCESS int sscanf(const char * __restrict _str,
- const char * __restrict _fmt, ...)
- __ATTRIBUTE ((__format__ (__scanf__, 2, 3)));
- extern _CODE_ACCESS int vfprintf(FILE * __restrict _fp,
- const char * __restrict _format, va_list _ap)
- __ATTRIBUTE ((__format__ (__printf__, 2, 0)));
- extern _CODE_ACCESS int vfscanf(FILE * __restrict _fp,
- const char * __restrict _fmt, va_list _ap)
- __ATTRIBUTE ((__format__ (__scanf__, 2, 0)));
- extern _CODE_ACCESS int vprintf(const char * __restrict _format, va_list _ap)
- __ATTRIBUTE ((__format__ (__printf__, 1, 0)));
- extern _CODE_ACCESS int vscanf(const char * __restrict _format, va_list _ap)
- __ATTRIBUTE ((__format__ (__scanf__, 1, 0)));
- extern _CODE_ACCESS int vsprintf(char * __restrict _string,
- const char * __restrict _format, va_list _ap)
- __ATTRIBUTE ((__format__ (__printf__, 2, 0)));
- extern _CODE_ACCESS int vsnprintf(char * __restrict _string, size_t _n,
- const char * __restrict _format, va_list _ap)
- __ATTRIBUTE ((__format__ (__printf__, 3, 0)));
- extern _CODE_ACCESS int vsscanf(const char * __restrict _str,
- const char * __restrict _fmt, va_list _ap)
- __ATTRIBUTE ((__format__ (__scanf__, 2, 0)));
- /****************************************************************************/
- /* CHARACTER INPUT/OUTPUT FUNCTIONS */
- /****************************************************************************/
- extern _CODE_ACCESS int fgetc(FILE *_fp);
- extern _CODE_ACCESS char *fgets(char * __restrict _ptr, int _size,
- FILE * __restrict _fp);
- extern _CODE_ACCESS int fputc(int _c, FILE *_fp);
- extern _CODE_ACCESS int fputs(const char * __restrict _ptr,
- FILE * __restrict _fp);
- extern _CODE_ACCESS int getc(FILE *_p);
- extern _CODE_ACCESS int getchar(void);
- extern _CODE_ACCESS char *gets(char *_ptr);
- extern _CODE_ACCESS int putc(int _x, FILE *_fp);
- extern _CODE_ACCESS int putchar(int _x);
- extern _CODE_ACCESS int puts(const char *_ptr);
- extern _CODE_ACCESS int ungetc(int _c, FILE *_fp);
- /****************************************************************************/
- /* DIRECT INPUT/OUTPUT FUNCTIONS */
- /****************************************************************************/
- extern _CODE_ACCESS size_t fread(void * __restrict _ptr,
- size_t _size, size_t _count,
- FILE * __restrict _fp);
- extern _CODE_ACCESS size_t fwrite(const void * __restrict _ptr,
- size_t _size, size_t _count,
- FILE * __restrict _fp);
- /****************************************************************************/
- /* FILE POSITIONING FUNCTIONS */
- /****************************************************************************/
- extern _CODE_ACCESS int fgetpos(FILE * __restrict _fp,
- fpos_t * __restrict _pos);
- extern _CODE_ACCESS int fseek(FILE *_fp, long _offset,
- int _ptrname);
- extern _CODE_ACCESS int fsetpos(FILE * __restrict _fp,
- const fpos_t * __restrict _pos);
- extern _CODE_ACCESS long ftell(FILE *_fp);
- extern _CODE_ACCESS void rewind(FILE *_fp);
- /****************************************************************************/
- /* ERROR-HANDLING FUNCTIONS */
- /****************************************************************************/
- extern _CODE_ACCESS void clearerr(FILE *_fp);
- extern _CODE_ACCESS int feof(FILE *_fp);
- extern _CODE_ACCESS int ferror(FILE *_fp);
- extern _CODE_ACCESS void perror(const char *_s);
- #define _getchar() getc(stdin)
- #define _putchar(_x) putc((_x), stdout)
- #define _clearerr(_fp) ((void) ((_fp)->flags &= ~(_STATERR | _STATEOF)))
- #define _ferror(_x) ((_x)->flags & _STATERR)
- #define _remove(_fl) (unlink((_fl)))
- #ifdef __cplusplus
- } /* extern "C" namespace std */
- #endif /* __cplusplus */
- #endif /* #ifndef _STDIO */
- #if defined(__cplusplus) && !defined(_CPP_STYLE_HEADER)
- using std::size_t;
- using std::FILE;
- using std::fpos_t;
- using std::_ftable;
- using std::__TI_tmpnams;
- using std::remove;
- using std::rename;
- using std::tmpfile;
- using std::tmpnam;
- using std::fclose;
- using std::fopen;
- using std::freopen;
- using std::setbuf;
- using std::setvbuf;
- using std::fflush;
- using std::fprintf;
- using std::fscanf;
- using std::printf;
- using std::scanf;
- using std::sprintf;
- using std::snprintf;
- using std::sscanf;
- using std::vfprintf;
- using std::vprintf;
- using std::vsprintf;
- using std::vsnprintf;
- using std::fgetc;
- using std::fgets;
- using std::fputc;
- using std::fputs;
- using std::getc;
- using std::getchar;
- using std::gets;
- using std::putc;
- using std::putchar;
- using std::puts;
- using std::ungetc;
- using std::fread;
- using std::fwrite;
- using std::fgetpos;
- using std::fseek;
- using std::fsetpos;
- using std::ftell;
- using std::rewind;
- using std::clearerr;
- using std::feof;
- using std::ferror;
- using std::perror;
- #endif /* _CPP_STYLE_HEADER */
|