Files
semi-libc/src/stdio/getwc.c
T

7 lines
70 B
C

#include "stdio_impl.h"
wint_t getwc(FILE *f)
{
return fgetwc(f);
}