Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / stdio / fputc.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/stdio.h>
3 #include <msvcrt/wchar.h>
4 #include <msvcrt/internal/file.h>
5
6 int
7 fputc(int c, FILE *fp)
8 {
9 return putc(c, fp);
10 }
11
12 wint_t
13 fputwc(wchar_t c, FILE *fp)
14 {
15 return putwc(c,fp);
16 }
17