chiark / gitweb /
[PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
[elogind.git] / klibc / klibc / include / stdio.h
1 /*
2  * stdio.h
3  */
4
5 #ifndef _STDIO_H
6 #define _STDIO_H
7
8 #include <klibc/extern.h>
9 #include <stdarg.h>
10 #include <stddef.h>
11 #include <unistd.h>
12
13 /* This structure doesn't really exist, but it gives us something
14    to define FILE * with */
15 struct _IO_file;
16 typedef struct _IO_file FILE;
17
18 #define stdin  ((FILE *)0)
19 #define stdout ((FILE *)1)
20 #define stderr ((FILE *)2)
21
22 #ifndef EOF
23 # define EOF (-1)
24 #endif
25
26 #ifndef BUFSIZ
27 # define BUFSIZ 4096
28 #endif
29
30 #define SEEK_SET 0
31 #define SEEK_CUR 1
32 #define SEEK_END 2
33
34 static __inline__ int fileno(FILE *__f)
35 {
36   /* This should really be intptr_t, but size_t should be the same size */
37   return (int)(size_t)__f;
38 }
39
40 static __inline__ FILE * __create_file(int __fd)
41 {
42   return (FILE *)(size_t)__fd;
43 }
44
45 __extern FILE *fopen(const char *, const char *);
46
47 static __inline__ FILE *fdopen(int __fd, const char *__m)
48 {
49   (void)__m; return __create_file(__fd);
50 }
51 static __inline__ int fclose(FILE *__f)
52 {
53   extern int close(int);
54   return close(fileno(__f));
55 }
56 static __inline__ int fseek(FILE *__f, off_t __o, int __w)
57 {
58   extern off_t lseek(int, off_t, int);
59   return (lseek(fileno(__f), __o, __w) == (off_t)-1) ? -1 : 0;
60 }
61 static __inline__ off_t ftell(FILE *__f)
62 {
63   extern off_t lseek(int, off_t, int);
64   return lseek(fileno(__f), 0, SEEK_CUR);
65 }
66
67 __extern int fputs(const char *, FILE *);
68 __extern int puts(const char *);
69 __extern int fputc(int, FILE *);
70 #define putc(c,f)  fputc((c),(f))
71 #define putchar(c) fputc((c),stdout)
72
73 __extern int    fgetc(FILE *);
74 __extern char * fgets(char *, int, FILE *);
75 #define getc(f) fgetc(f)
76
77 __extern size_t _fread(void *, size_t, FILE *);
78 __extern size_t _fwrite(const void *, size_t, FILE *);
79
80 #ifndef __NO_FREAD_FWRITE_INLINES
81 static __inline__ size_t
82 fread(void *__p, size_t __s, size_t __n, FILE *__f)
83 {
84   return _fread(__p, __s*__n, __f)/__s;
85 }
86 static  __inline__ size_t
87 fwrite(void *__p, size_t __s, size_t __n, FILE *__f)
88 {
89   return _fwrite(__p, __s*__n, __f)/__s;
90 }
91 #endif
92
93 __extern int printf(const char *, ...);
94 __extern int vprintf(const char *, va_list);
95 __extern int fprintf(FILE *, const char *, ...);
96 __extern int vfprintf(FILE *, const char *, va_list);
97 __extern int sprintf(char *, const char *, ...);
98 __extern int vsprintf(char *, const char *, va_list);
99 __extern int snprintf(char *, size_t n, const char *, ...);
100 __extern int vsnprintf(char *, size_t n, const char *, va_list);
101
102 __extern int sscanf(const char *, const char *, ...);
103 __extern int vsscanf(const char *, const char *, va_list);
104
105 __extern void perror(const char *);
106
107 __extern int rename(const char *, const char *);
108
109 #endif /* _STDIO_H */