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 |
* <<fgetc>>---get a character from a file or stream
|
sl@0
|
17 |
* INDEX
|
sl@0
|
18 |
* fgetc
|
sl@0
|
19 |
* ANSI_SYNOPSIS
|
sl@0
|
20 |
* #include <stdio.h>
|
sl@0
|
21 |
* int fgetc(FILE *<[fp]>);
|
sl@0
|
22 |
* TRAD_SYNOPSIS
|
sl@0
|
23 |
* #include <stdio.h>
|
sl@0
|
24 |
* int fgetc(<[fp]>)
|
sl@0
|
25 |
* FILE *<[fp]>;
|
sl@0
|
26 |
* Use <<fgetc>> to get the next single character from the file or stream
|
sl@0
|
27 |
* identified by <[fp]>. As a side effect, <<fgetc>> advances the file's
|
sl@0
|
28 |
* current position indicator.
|
sl@0
|
29 |
* For a macro version of this function, see <<getc>>.
|
sl@0
|
30 |
* RETURNS
|
sl@0
|
31 |
* The next character (read as an <<unsigned char>>, and cast to
|
sl@0
|
32 |
* <<int>>), unless there is no more data, or the host system reports a
|
sl@0
|
33 |
* read error; in either of these situations, <<fgetc>> returns <<EOF>>.
|
sl@0
|
34 |
* You can distinguish the two situations that cause an <<EOF>> result by
|
sl@0
|
35 |
* using the <<ferror>> and <<feof>> functions.
|
sl@0
|
36 |
* PORTABILITY
|
sl@0
|
37 |
* ANSI C requires <<fgetc>>.
|
sl@0
|
38 |
* Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
|
sl@0
|
39 |
* <<lseek>>, <<read>>, <<sbrk>>, <<write>>.
|
sl@0
|
40 |
*
|
sl@0
|
41 |
*
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
#include <stdio.h>
|
sl@0
|
47 |
#include "LOCAL.H"
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
Get the next character from a stream.
|
sl@0
|
51 |
Returns the next character of the stream and increases the file pointer
|
sl@0
|
52 |
to point to the following one.
|
sl@0
|
53 |
@return The character read is returned as an int value.
|
sl@0
|
54 |
If the End Of File has been reached or there has been an error reading,
|
sl@0
|
55 |
the function returns EOF.
|
sl@0
|
56 |
@param fp pointer to an open file.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
EXPORT_C int
|
sl@0
|
59 |
fgetc (FILE * fp)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
return __sgetc (fp);
|
sl@0
|
62 |
}
|