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

VxWorks

开发平台:

C/C++

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