nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Typedefs | Functions
stdio.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define BUFSIZ   512
 
#define EOF   (-1)
 End of file character. Some things throughout the library rely on this being -1. More...
 
#define putc(c, stream)   fputc(c, stream)
 지정된 스트림으로 문자 하나를 출력한다. More...
 
#define putchar(c)   fputc(c, stdout)
 표준 출력으로 문자 하나를 출력한다. More...
 
#define puts(s)   fputs(s, stdout)
 표준 출력으로 문자열을 출력한다. More...
 
#define SEEK_CUR   1
 Seek from current position. More...
 
#define SEEK_END   2
 Seek from end of file. More...
 
#define SEEK_SET   0
 Seek from beginning of file. More...
 
#define stderr   thread_get_stderr()
 
#define stdin   thread_get_stdin()
 
#define stdout   thread_get_stdout()
 

Typedefs

typedef struct file FILE
 

Functions

void clearerr (FILE *stream)
 
int feof (FILE *stream)
 
int ferror (FILE *stream)
 
int fflush (FILE *stream)
 스트림의 출력 버퍼를 실제 장치로 전송 한다. More...
 
int fileno (FILE *stream)
 
int fprintf (FILE *stream, const char *format,...)
 지정된 형식에 맞춰서 출력된 문자열을 stream 으로 보낸다. More...
 
int fputc (int c, FILE *stream)
 지정된 스트림으로 문자 하나를 출력한다. More...
 
int fputs (const char *s, FILE *stream)
 지정된 스트림으로 문자열을 출력한다. More...
 
int printf (const char *format,...)
 지정된 형식에 맞춰서 문자열을 출력한다. More...
 
int snprintf (char *str, size_t size, const char *format,...)
 지정된 형식에 맞춰서 문자열을 주어진 버퍼에 지정된 길이만큼 쓴다. More...
 
int sprintf (char *str, const char *format,...)
 지정된 형식에 맞춰서 문자열을 주어진 버퍼에 쓴다. More...