muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / putc.c
blob97515a9c8c3099654d964de9c2ef05980fd46b08
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 C99 function putc().
6 */
8 /*****************************************************************************
10 NAME
11 #include <stdio.h>
13 int putc (
15 SYNOPSIS
16 int c,
17 FILE * stream)
19 FUNCTION
20 Write one character to the specified stream.
22 INPUTS
23 c - The character to output
24 stream - The character is written to this stream
26 RESULT
27 The character written or EOF on error.
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
36 fputc()
38 INTERNALS
39 putc() is an alias for fputc()
41 ******************************************************************************/