]> git.sur5r.net Git - cc65/blob - include/stdio.h
Fixed gcc compiler warning (#867)
[cc65] / include / stdio.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  stdio.h                                  */
4 /*                                                                           */
5 /*                               Input/output                                */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2011, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
12 /* EMail:         uz@cc65.org                                                */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef _STDIO_H
37 #define _STDIO_H
38
39
40
41 #include <stddef.h>
42 #include <stdarg.h>
43
44
45
46 /* Types */
47 typedef struct _FILE FILE;
48 typedef unsigned long fpos_t;
49
50 /* Standard file descriptors */
51 extern FILE* stdin;
52 extern FILE* stdout;
53 extern FILE* stderr;
54
55 /* Standard defines */
56 #define _IOFBF          0
57 #define _IOLBF          1
58 #define _IONBF          2
59 #define BUFSIZ          256
60 #define EOF             -1
61 #define FOPEN_MAX       8
62 #define SEEK_CUR        0
63 #define SEEK_END        1
64 #define SEEK_SET        2
65 #define TMP_MAX         256
66
67 /* Standard defines that are platform dependent */
68 #if defined(__APPLE2__)
69 #  define FILENAME_MAX  (64+1)
70 #elif defined(__ATARI__)
71 #  define FILENAME_MAX  (12+1)
72 #elif defined(__LUNIX__)
73 #  define FILENAME_MAX  (80+1)
74 #elif defined(__TELESTRAT__)
75 #  define FILENAME_MAX  (50+1)
76 #else
77 #  define FILENAME_MAX  (16+1)
78 #endif
79 #define L_tmpnam        FILENAME_MAX
80
81
82
83 /*****************************************************************************/
84 /*                                   Code                                    */
85 /*****************************************************************************/
86
87
88
89 /* Functions */
90 void __fastcall__ clearerr (FILE* f);
91 int __fastcall__ fclose (FILE* f);
92 int __fastcall__ feof (FILE* f);
93 int __fastcall__ ferror (FILE* f);
94 int __fastcall__ fflush (FILE* f);
95 int __fastcall__ fgetc (FILE* f);
96 char* __fastcall__ fgets (char* buf, size_t size, FILE* f);
97 FILE* __fastcall__ fopen (const char* name, const char* mode);
98 int fprintf (FILE* f, const char* format, ...);
99 int __fastcall__ fputc (int c, FILE* f);
100 int __fastcall__ fputs (const char* s, FILE* f);
101 size_t __fastcall__ fread (void* buf, size_t size, size_t count, FILE* f);
102 FILE* __fastcall__ freopen (const char* name, const char* mode, FILE* f);
103 size_t __fastcall__ fwrite (const void* buf, size_t size, size_t count, FILE* f);
104 int __fastcall__ fgetpos (FILE* f, fpos_t *pos);
105 int __fastcall__ fsetpos (FILE* f, const fpos_t* pos);
106 long __fastcall__ ftell (FILE* f);
107 int __fastcall__ fseek (FILE* f, long offset, int whence);
108 void __fastcall__ rewind (FILE *f);
109 int getchar (void);
110 char* __fastcall__ gets (char* s);
111 void __fastcall__ perror (const char* s);
112 int printf (const char* format, ...);
113 int __fastcall__ putchar (int c);
114 int __fastcall__ puts (const char* s);
115 int __fastcall__ remove (const char* name);
116 int __fastcall__ rename (const char* oldname, const char* newname);
117 int snprintf (char* buf, size_t size, const char* format, ...);
118 int sprintf (char* buf, const char* format, ...);
119 int __fastcall__ ungetc (int c, FILE* f);
120 int __fastcall__ vfprintf (FILE* f, const char* format, va_list ap);
121 int __fastcall__ vprintf (const char* format, va_list ap);
122 int __fastcall__ vsnprintf (char* buf, size_t size, const char* format, va_list ap);
123 int __fastcall__ vsprintf (char* buf, const char* format, va_list ap);
124
125 int scanf (const char* format, ...);
126 int fscanf (FILE* f, const char* format, ...);
127 int sscanf (const char* s, const char* format, ...);
128 int __fastcall__ vscanf (const char* format, va_list ap);
129 int __fastcall__ vsscanf (const char* s, const char* format, va_list ap);
130 int __fastcall__ vfscanf (FILE* f, const char* format, va_list ap);
131
132 #if __CC65_STD__ == __CC65_STD_CC65__
133 FILE* __fastcall__ fdopen (int fd, const char* mode);   /* Unix */
134 int __fastcall__ fileno (FILE* f);                      /* Unix */
135 #endif
136 void __fastcall__ _poserror (const char* msg);          /* cc65 */
137
138 /* Masking macros for some functions */
139 #define getc(f)         fgetc (f)               /* ANSI */
140 #define putc(c, f)      fputc (c, f)            /* ANSI */
141
142
143
144 /* End of stdio.h */
145 #endif