PatchworkOS
Loading...
Searching...
No Matches
getc.c
Go to the documentation of this file.
1#include <stdio.h>
2#include <stdlib.h>
3
4#include "user/common/file.h"
6
7int getc(FILE* stream)
8{
9 return fgetc(stream);
10}
int getc(FILE *stream)
Definition getc.c:7
_PUBLIC int fgetc(FILE *stream)
Definition fgetc.c:7
Definition file.h:34