ncloader  0.1
 모두 데이타 구조 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 매크로 그룹들 페이지들
stdio.h
이 파일의 문서화 페이지로 가기
1 
14 typedef struct file FILE;
15 
20 #ifndef EOF
21 # define EOF (-1)
22 #endif
23 
24 /* The possibilities for the third argument to `fseek'.
25  * These values should not be changed.
26  */
27 
29 #define SEEK_SET 0
30 
31 #define SEEK_CUR 1
32 
33 #define SEEK_END 2
34 
35 extern FILE *stdin;
36 extern FILE *stdout;
37 extern FILE *stderr;
38 
39 #define stdin stdin
40 #define stdout stdout
41 #define stderr stderr
42 
50 #define putc(c, stream) fputc(c, stream)
51 
58 #define putchar(c) fputc(c, stdout)
59 
66 #define puts(s) fputs(s, stdout)
67 
74 extern int printf(const char *format, ...);
75 
83 extern int fprintf(FILE *stream, const char *format, ...);
84 
92 extern int sprintf(char *str, const char *format, ...);
93 
102 extern int snprintf(char *str, size_t size, const char *format, ...);
103 
110 extern int fputc(int c, FILE *stream);
111 
118 extern int fputs(const char *s, FILE *stream);
119 
125 extern int fflush(FILE *stream);
126