1 /* Copyright (C) 1993-2012 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. */
32 # define wmemcpy __wmemcpy
36 _IO_getwline (fp
, buf
, n
, delim
, extract_delim
)
43 return _IO_getwline_info (fp
, buf
, n
, delim
, extract_delim
, (wint_t *) 0);
46 /* Algorithm based on that used by Berkeley pre-4.4 fgets implementation.
48 Read chars into buf (of size n), until delim is seen.
49 Return number of chars read (at most n).
50 Does not put a terminating '\0' in buf.
51 If extract_delim < 0, leave delimiter unread.
52 If extract_delim > 0, insert delim in output. */
55 _IO_getwline_info (fp
, buf
, n
, delim
, extract_delim
, eof
)
66 if (__builtin_expect (fp
->_mode
, 1) == 0)
70 _IO_ssize_t len
= (fp
->_wide_data
->_IO_read_end
71 - fp
->_wide_data
->_IO_read_ptr
);
74 wint_t wc
= __wuflow (fp
);
83 if (extract_delim
> 0)
85 else if (extract_delim
< 0)
86 _IO_sputbackc (fp
, wc
);
87 if (extract_delim
> 0)
97 if ((_IO_size_t
) len
>= n
)
99 t
= wmemchr ((void *) fp
->_wide_data
->_IO_read_ptr
, delim
, len
);
102 _IO_size_t old_len
= ptr
- buf
;
103 len
= t
- fp
->_wide_data
->_IO_read_ptr
;
104 if (extract_delim
>= 0)
107 if (extract_delim
> 0)
110 wmemcpy ((void *) ptr
, (void *) fp
->_wide_data
->_IO_read_ptr
,
112 fp
->_wide_data
->_IO_read_ptr
= t
;
113 return old_len
+ len
;
115 wmemcpy ((void *) ptr
, (void *) fp
->_wide_data
->_IO_read_ptr
, len
);
116 fp
->_wide_data
->_IO_read_ptr
+= len
;