c08cccec5579ffc0c1f302757c663dc8b956c47c
[reactos.git] / lib / msvcrt / 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 /*
7  * @implemented
8  */
9 int
10 fputc(int c, FILE *fp)
11 {
12   return putc(c, fp);
13 }
14
15 /*
16  * @implemented
17  */
18 wint_t
19 fputwc(wchar_t c, FILE *fp)
20 {
21   return putwc(c,fp);
22 }
23