1PUTCHAR(P) POSIX Programmer's Manual PUTCHAR(P)
2
3
4
6 putchar - put a byte on a stdout stream
7
9 #include <stdio.h>
10
11 int putchar(int c);
12
13
15 The function call putchar(c) shall be equivalent to putc(c,stdout).
16
18 Refer to fputc() .
19
21 Refer to fputc() .
22
23 The following sections are informative.
24
26 None.
27
29 None.
30
32 None.
33
35 None.
36
38 putc() , the Base Definitions volume of IEEE Std 1003.1-2001, <stdio.h>
39
41 Portions of this text are reprinted and reproduced in electronic form
42 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
43 -- Portable Operating System Interface (POSIX), The Open Group Base
44 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
45 Electrical and Electronics Engineers, Inc and The Open Group. In the
46 event of any discrepancy between this version and the original IEEE and
47 The Open Group Standard, the original IEEE and The Open Group Standard
48 is the referee document. The original Standard can be obtained online
49 at http://www.opengroup.org/unix/online.html .
50
51
52
53IEEE/The Open Group 2003 PUTCHAR(P)