Update copyright notices with scripts/update-copyrights
[glibc.git] / libio / iogetline.c
blob3ca38606dc2421c72fc1c161fa4f17f6db6633d2
1 /* Copyright (C) 1993-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>.
18 As a special exception, if you link the code in this file with
19 files compiled with a GNU compiler to produce an executable,
20 that does not cause the resulting executable to be covered by
21 the GNU Lesser General Public License. This exception does not
22 however invalidate any other reasons why the executable file
23 might be covered by the GNU Lesser General Public License.
24 This exception applies to code released by its copyright holders
25 in files containing the exception. */
27 #include "libioP.h"
28 #include <string.h>
30 _IO_size_t
31 _IO_getline (fp, buf, n, delim, extract_delim)
32 _IO_FILE *fp;
33 char *buf;
34 _IO_size_t n;
35 int delim;
36 int extract_delim;
38 return _IO_getline_info (fp, buf, n, delim, extract_delim, (int *) 0);
40 libc_hidden_def (_IO_getline)
42 /* Algorithm based on that used by Berkeley pre-4.4 fgets implementation.
44 Read chars into buf (of size n), until delim is seen.
45 Return number of chars read (at most n).
46 Does not put a terminating '\0' in buf.
47 If extract_delim < 0, leave delimiter unread.
48 If extract_delim > 0, insert delim in output. */
50 _IO_size_t
51 _IO_getline_info (fp, buf, n, delim, extract_delim, eof)
52 _IO_FILE *fp;
53 char *buf;
54 _IO_size_t n;
55 int delim;
56 int extract_delim;
57 int *eof;
59 char *ptr = buf;
60 if (eof != NULL)
61 *eof = 0;
62 if (__builtin_expect (fp->_mode, -1) == 0)
63 _IO_fwide (fp, -1);
64 while (n != 0)
66 _IO_ssize_t len = fp->_IO_read_end - fp->_IO_read_ptr;
67 if (len <= 0)
69 int c = __uflow (fp);
70 if (c == EOF)
72 if (eof)
73 *eof = c;
74 break;
76 if (c == delim)
78 if (extract_delim > 0)
79 *ptr++ = c;
80 else if (extract_delim < 0)
81 _IO_sputbackc (fp, c);
82 if (extract_delim > 0)
83 ++len;
84 return ptr - buf;
86 *ptr++ = c;
87 n--;
89 else
91 char *t;
92 if ((_IO_size_t) len >= n)
93 len = n;
94 t = (char *) memchr ((void *) fp->_IO_read_ptr, delim, len);
95 if (t != NULL)
97 _IO_size_t old_len = ptr-buf;
98 len = t - fp->_IO_read_ptr;
99 if (extract_delim >= 0)
101 ++t;
102 if (extract_delim > 0)
103 ++len;
105 memcpy ((void *) ptr, (void *) fp->_IO_read_ptr, len);
106 fp->_IO_read_ptr = t;
107 return old_len + len;
109 memcpy ((void *) ptr, (void *) fp->_IO_read_ptr, len);
110 fp->_IO_read_ptr += len;
111 ptr += len;
112 n -= len;
115 return ptr - buf;
117 libc_hidden_def (_IO_getline_info)