oscar64/include/stdio.h

29 lines
440 B
C

#ifndef STDIO_H
#define STDIO_H
#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
void putchar(char c);
char getchar(void);
void puts(const char * str);
char * gets(char * str);
char* gets_s(char* str, size_t n);
void printf(const char * fmt, ...);
int sprintf(char * str, const char * fmt, ...);
int scanf(const char * fmt, ...);
int sscanf(const char * str, const char * fmt, ...);
#pragma compile("stdio.c")
#endif