Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
16 * <<feof>>---test for end of file
21 * int feof(FILE *<[fp]>);
26 * <<feof>> tests whether or not the end of the file identified by <[fp]>
29 * <<feof>> returns <<0>> if the end of file has not yet been reached; if
30 * at end of file, the result is nonzero.
32 * <<feof>> is required by ANSI C.
33 * No supporting OS subroutines are required.
46 Check if End Of File has been reached.
47 @return A non-zero value is returned in the case that the position
48 indicator reached the End Of File in the last input operation with
49 the specified stream, otherwise 0 is returned.
50 @param fp pointer to an open file.