20 lines
542 B
C
20 lines
542 B
C
#ifndef _YGGDRASIL_STDIO_H
|
|
#define _YGGDRASIL_STDIO_H 1
|
|
|
|
int printf(const char *format, ...);
|
|
int fprintf(FILE *stream, const char *format, ...);
|
|
int sprintf(FILE *stream, const char *format, ...);
|
|
int snprintf(FILE *stream, size_t len, const char *format, ...);
|
|
int dprintf(int fd, const char *format, ...);
|
|
|
|
int scanf(const char *format, ...);
|
|
int sscanf(const char *str, const char *format, ...);
|
|
int fscanf(FILE *stream, const char *format, ...);
|
|
|
|
#define P_tmpdir "/tmp"
|
|
|
|
#define FILENAME_MAX PATH_MAX
|
|
#define FOPEN_MAX OPEN_MAX
|
|
|
|
#endif
|