2018-02-25 11:14:43 +03:00
|
|
|
#pragma once
|
|
|
|
|
2018-02-25 08:13:54 +03:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <va_list.h>
|
|
|
|
|
2018-05-04 11:53:31 +03:00
|
|
|
typedef struct _FILE FILE;
|
|
|
|
|
|
|
|
#define BUFSIZ 1024
|
2018-02-25 08:13:54 +03:00
|
|
|
|
|
|
|
extern FILE * stdin;
|
|
|
|
extern FILE * stdout;
|
|
|
|
extern FILE * stderr;
|
|
|
|
|
|
|
|
#define EOF (-1)
|
|
|
|
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
#define SEEK_END 2
|
|
|
|
|
|
|
|
extern FILE * fopen(const char *path, const char *mode);
|
|
|
|
extern int fclose(FILE * stream);
|
|
|
|
extern int fseek(FILE * stream, long offset, int whence);
|
|
|
|
extern long ftell(FILE * stream);
|
2018-02-25 11:14:43 +03:00
|
|
|
extern FILE * fdopen(int fd, const char *mode);
|
2018-02-25 08:13:54 +03:00
|
|
|
|
|
|
|
extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE * stream);
|
|
|
|
extern size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE * stream);
|
|
|
|
|
|
|
|
extern int fileno(FILE * stream);
|
|
|
|
extern int fflush(FILE * stream);
|
|
|
|
|
2018-05-15 06:39:38 +03:00
|
|
|
extern size_t vasprintf(char ** buf, const char *fmt, va_list args);
|
2018-02-25 08:13:54 +03:00
|
|
|
extern int sprintf(char *buf, const char *fmt, ...);
|
|
|
|
extern int fprintf(FILE *stream, char *fmt, ...);
|
|
|
|
extern int printf(char *fmt, ...);
|
|
|
|
|
2018-02-25 13:07:56 +03:00
|
|
|
extern int puts(const char *s);
|
2018-02-25 08:13:54 +03:00
|
|
|
extern int fputs(const char *s, FILE *stream);
|
|
|
|
extern int fputc(int c, FILE *stream);
|
|
|
|
extern int fgetc(FILE *stream);
|
2018-02-25 11:43:31 +03:00
|
|
|
extern char *fgets(char *s, int size, FILE *stream);
|
2018-02-25 08:13:54 +03:00
|
|
|
|
2018-02-25 11:43:31 +03:00
|
|
|
extern void rewind(FILE *stream);
|
2018-02-25 11:14:43 +03:00
|
|
|
extern void setbuf(FILE * stream, char * buf);
|
2018-05-04 07:11:06 +03:00
|
|
|
|
|
|
|
extern void perror(const char *s);
|
2018-05-04 11:53:31 +03:00
|
|
|
|
|
|
|
extern int ungetc(int c, FILE * stream);
|
2018-05-08 16:49:53 +03:00
|
|
|
|
|
|
|
extern int feof(FILE * stream);
|
2018-05-09 11:02:31 +03:00
|
|
|
extern void clearerr(FILE * stream);
|
|
|
|
|
2018-05-15 06:39:38 +03:00
|
|
|
extern int _fwouldblock(FILE * stream);
|
|
|
|
|
2018-05-09 11:02:31 +03:00
|
|
|
#define getc(s) fgetc(s)
|