sl@0
|
1 |
/* PUTC.C
|
sl@0
|
2 |
*
|
sl@0
|
3 |
* Portions Copyright (c) 1990-1999 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
4 |
* All rights reserved.
|
sl@0
|
5 |
*/
|
sl@0
|
6 |
|
sl@0
|
7 |
/*
|
sl@0
|
8 |
* Copyright (c) 1990 The Regents of the University of California.
|
sl@0
|
9 |
* All rights reserved.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Redistribution and use in source and binary forms are permitted
|
sl@0
|
12 |
* provided that the above copyright notice and this paragraph are
|
sl@0
|
13 |
* duplicated in all such forms and that any documentation,
|
sl@0
|
14 |
* advertising materials, and other materials related to such
|
sl@0
|
15 |
* distribution and use acknowledge that the software was developed
|
sl@0
|
16 |
* by the University of California, Berkeley. The name of the
|
sl@0
|
17 |
* University may not be used to endorse or promote products derived
|
sl@0
|
18 |
* from this software without specific prior written permission.
|
sl@0
|
19 |
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
sl@0
|
20 |
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
sl@0
|
21 |
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
FUNCTION
|
sl@0
|
26 |
<<putc>>---write a character (macro)
|
sl@0
|
27 |
|
sl@0
|
28 |
INDEX
|
sl@0
|
29 |
putc
|
sl@0
|
30 |
|
sl@0
|
31 |
ANSI_SYNOPSIS
|
sl@0
|
32 |
#include <stdio.h>
|
sl@0
|
33 |
int putc(int <[ch]>, FILE *<[fp]>);
|
sl@0
|
34 |
|
sl@0
|
35 |
TRAD_SYNOPSIS
|
sl@0
|
36 |
#include <stdio.h>
|
sl@0
|
37 |
int putc(<[ch]>, <[fp]>)
|
sl@0
|
38 |
int <[ch]>;
|
sl@0
|
39 |
FILE *<[fp]>;
|
sl@0
|
40 |
|
sl@0
|
41 |
DESCRIPTION
|
sl@0
|
42 |
<<putc>> is a macro, defined in <<stdio.h>>. <<putc>>
|
sl@0
|
43 |
writes the argument <[ch]> to the file or stream identified by
|
sl@0
|
44 |
<[fp]>, after converting it from an <<int>> to an <<unsigned char>>.
|
sl@0
|
45 |
|
sl@0
|
46 |
If the file was opened with append mode (or if the stream cannot
|
sl@0
|
47 |
support positioning), then the new character goes at the end of the
|
sl@0
|
48 |
file or stream. Otherwise, the new character is written at the
|
sl@0
|
49 |
current value of the position indicator, and the position indicator
|
sl@0
|
50 |
advances by one.
|
sl@0
|
51 |
|
sl@0
|
52 |
For a subroutine version of this macro, see <<fputc>>.
|
sl@0
|
53 |
|
sl@0
|
54 |
RETURNS
|
sl@0
|
55 |
If successful, <<putc>> returns its argument <[ch]>. If an error
|
sl@0
|
56 |
intervenes, the result is <<EOF>>. You can use `<<ferror(<[fp]>)>>' to
|
sl@0
|
57 |
query for errors.
|
sl@0
|
58 |
|
sl@0
|
59 |
PORTABILITY
|
sl@0
|
60 |
ANSI C requires <<putc>>; it suggests, but does not require, that
|
sl@0
|
61 |
<<putc>> be implemented as a macro. The standard explicitly permits
|
sl@0
|
62 |
macro implementations of <<putc>> to use the <[fp]> argument more than once;
|
sl@0
|
63 |
therefore, in a portable program, you should not use an expression
|
sl@0
|
64 |
with side effects as this argument.
|
sl@0
|
65 |
|
sl@0
|
66 |
Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
|
sl@0
|
67 |
<<lseek>>, <<read>>, <<sbrk>>, <<write>>.
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
|
sl@0
|
70 |
#include <stdio_r.h>
|
sl@0
|
71 |
#include "LOCAL.H"
|
sl@0
|
72 |
|
sl@0
|
73 |
/*
|
sl@0
|
74 |
* A subroutine version of the macro putc.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
|
sl@0
|
77 |
#undef putc
|
sl@0
|
78 |
|
sl@0
|
79 |
EXPORT_C int
|
sl@0
|
80 |
putc (int c,register FILE *fp)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
/* CHECK_INIT is (eventually) called by __swbuf. */
|
sl@0
|
83 |
|
sl@0
|
84 |
return __sputc (c, fp);
|
sl@0
|
85 |
}
|