feof.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:3k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* feof.c - end of file indicator function. stdio.h */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01d,05mar93,jdi  documentation cleanup for 5.1.
  7. 01c,21sep92,smb  tweaks for mg
  8. 01b,20sep92,smb  documentation additions
  9. 01a,29jul92,smb  taken from UCB stdio
  10. */
  11. /*
  12. DESCRIPTION 
  13.  * 
  14.  * Copyright (c) 1990 The Regents of the University of California.
  15.  * All rights reserved.
  16.  *
  17.  * This code is derived from software contributed to Berkeley by
  18.  * Chris Torek.
  19.  *
  20.  * Redistribution and use in source and binary forms, with or without
  21.  * modification, are permitted provided that the following conditions
  22.  * are met:
  23.  * 1. Redistributions of source code must retain the above copyright
  24.  *    notice, this list of conditions and the following disclaimer.
  25.  * 2. Redistributions in binary form must reproduce the above copyright
  26.  *    notice, this list of conditions and the following disclaimer in the
  27.  *    documentation and/or other materials provided with the distribution.
  28.  * 3. All advertising materials mentioning features or use of this software
  29.  *    must display the following acknowledgement:
  30.  * This product includes software developed by the University of
  31.  * California, Berkeley and its contributors.
  32.  * 4. Neither the name of the University nor the names of its contributors
  33.  *    may be used to endorse or promote products derived from this software
  34.  *    without specific prior written permission.
  35.  *
  36.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  37.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  39.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  40.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  41.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  42.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  43.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  44.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  45.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47. NOMANUAL
  48. */ 
  49. #include "vxWorks.h"
  50. #include "stdio.h"
  51. #undef feof
  52. /******************************************************************************
  53. * feof - test the end-of-file indicator for a stream (ANSI)
  54. *
  55. * This routine tests the end-of-file indicator for a specified stream. 
  56. *
  57. * INCLUDE FILES: stdio.h 
  58. *
  59. * RETURNS:
  60. * Non-zero if the end-of-file indicator is set for <fp>.
  61. *
  62. * SEE ALSO: clearerr()
  63. */
  64. int feof
  65.     (
  66.     FILE * fp /* stream to test */
  67.     )
  68.     {
  69.     return (__sfeof(fp));
  70.     }