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

VxWorks

开发平台:

C/C++

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