sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* FUNCTION
|
sl@0
|
16 |
* <<fputc>>---write a character on a stream or file
|
sl@0
|
17 |
* INDEX
|
sl@0
|
18 |
* fputc
|
sl@0
|
19 |
* ANSI_SYNOPSIS
|
sl@0
|
20 |
* #include <stdio.h>
|
sl@0
|
21 |
* int fputc(int <[ch]>, FILE *<[fp]>);
|
sl@0
|
22 |
* TRAD_SYNOPSIS
|
sl@0
|
23 |
* #include <stdio.h>
|
sl@0
|
24 |
* int fputc(<[ch]>, <[fp]>)
|
sl@0
|
25 |
* int <[ch]>;
|
sl@0
|
26 |
* FILE *<[fp]>;
|
sl@0
|
27 |
* <<fputc>> converts the argument <[ch]> from an <<int>> to an
|
sl@0
|
28 |
* <<unsigned char>>, then writes it to the file or stream identified by
|
sl@0
|
29 |
* <[fp]>.
|
sl@0
|
30 |
* If the file was opened with append mode (or if the stream cannot
|
sl@0
|
31 |
* support positioning), then the new character goes at the end of the
|
sl@0
|
32 |
* file or stream. Otherwise, the new character is written at the
|
sl@0
|
33 |
* current value of the position indicator, and the position indicator
|
sl@0
|
34 |
* advances by one.
|
sl@0
|
35 |
* For a macro version of this function, see <<putc>>.
|
sl@0
|
36 |
* RETURNS
|
sl@0
|
37 |
* If successful, <<fputc>> returns its argument <[ch]>. If an error
|
sl@0
|
38 |
* intervenes, the result is <<EOF>>. You can use `<<ferror(<[fp]>)>>' to
|
sl@0
|
39 |
* query for errors.
|
sl@0
|
40 |
* PORTABILITY
|
sl@0
|
41 |
* <<fputc>> is required by ANSI C.
|
sl@0
|
42 |
* Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
|
sl@0
|
43 |
* <<lseek>>, <<read>>, <<sbrk>>, <<write>>.
|
sl@0
|
44 |
*
|
sl@0
|
45 |
*
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
#include <stdio.h>
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
Write character to stream.
|
sl@0
|
53 |
@return If there are no errors the written character is returned.
|
sl@0
|
54 |
If an error occurs, EOF is returned.
|
sl@0
|
55 |
@param ch Character to be written.
|
sl@0
|
56 |
The function casts the int parameter to its unsigned char equivalent before writing it.
|
sl@0
|
57 |
@param file pointer to an open file.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
EXPORT_C int
|
sl@0
|
60 |
fputc (int ch, FILE * file)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
return putc ((unsigned char)ch, file);
|
sl@0
|
63 |
}
|