]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/LibC/Stdio/fgets.c
StdLib/LibC/Stdio: fix "missing braces around initializer"
[mirror_edk2.git] / StdLib / LibC / Stdio / fgets.c
CommitLineData
2aa62f2b 1/** @file\r
2 Implementation of fgets as declared in <stdio.h>.\r
3\r
53e1e5c6 4 Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
2aa62f2b 5 This program and the accompanying materials are licensed and made available\r
6 under the terms and conditions of the BSD License that accompanies this\r
7 distribution. The full text of the license may be found at\r
53e1e5c6 8 http://opensource.org/licenses/bsd-license.\r
2aa62f2b 9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13 Copyright (c) 1990, 1993\r
14 The Regents of the University of California. All rights reserved.\r
15\r
16 This code is derived from software contributed to Berkeley by\r
17 Chris Torek.\r
18\r
19 Redistribution and use in source and binary forms, with or without\r
20 modification, are permitted provided that the following conditions\r
21 are met:\r
22 - Redistributions of source code must retain the above copyright\r
23 notice, this list of conditions and the following disclaimer.\r
24 - Redistributions in binary form must reproduce the above copyright\r
25 notice, this list of conditions and the following disclaimer in the\r
26 documentation and/or other materials provided with the distribution.\r
27 - Neither the name of the University nor the names of its contributors\r
28 may be used to endorse or promote products derived from this software\r
29 without specific prior written permission.\r
30\r
31 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\r
32 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
33 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
34 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE\r
35 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
36 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
37 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
38 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
39 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
40 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
41 POSSIBILITY OF SUCH DAMAGE.\r
42\r
43 NetBSD: fgets.c,v 1.20 2003/12/14 23:56:28 lukem Exp\r
44 fgets.c 8.2 (Berkeley) 12/22/93\r
45**/\r
46#include <LibConfig.h>\r
47\r
48#include <assert.h>\r
49#include <stdio.h>\r
50#include <string.h>\r
53e1e5c6 51#include <errno.h>\r
2aa62f2b 52#include "reentrant.h"\r
53#include "local.h"\r
54\r
55/*\r
56 * Read at most n-1 characters from the given file.\r
57 * Stop when a newline has been read, or the count runs out.\r
58 * Return first argument, or NULL if no characters were read.\r
59 */\r
60char *\r
61fgets(char *buf, int n, FILE *fp)\r
62{\r
63 size_t len;\r
64 char *s;\r
65 unsigned char *p, *t;\r
66\r
67 _DIAGASSERT(buf != NULL);\r
68 _DIAGASSERT(fp != NULL);\r
53e1e5c6 69 if ((fp == NULL) || (n <= 0)) { /* sanity check */\r
70 errno = EINVAL;\r
2aa62f2b 71 return (NULL);\r
53e1e5c6 72 }\r
2aa62f2b 73\r
74 FLOCKFILE(fp);\r
75 _SET_ORIENTATION(fp, -1);\r
76 s = buf;\r
77 n--; /* leave space for NUL */\r
78 while (n != 0) {\r
79 /*\r
80 * If the buffer is empty, refill it.\r
81 */\r
82 if (fp->_r <= 0) {\r
83 if (__srefill(fp)) {\r
84 /* EOF/error: stop with partial or no line */\r
85 if (s == buf) {\r
86 FUNLOCKFILE(fp);\r
87 return (NULL);\r
88 }\r
89 break;\r
90 }\r
91 }\r
92 len = fp->_r;\r
93 p = fp->_p;\r
94\r
95 /*\r
96 * Scan through at most n bytes of the current buffer,\r
97 * looking for '\n'. If found, copy up to and including\r
98 * newline, and stop. Otherwise, copy entire chunk\r
99 * and loop.\r
100 */\r
101 if (len > (size_t)n)\r
102 len = n;\r
103 t = memchr((void *)p, '\n', len);\r
104 if (t != NULL) {\r
105 len = ++t - p;\r
106 fp->_r -= (int)len;\r
107 fp->_p = t;\r
108 (void)memcpy((void *)s, (void *)p, len);\r
109 s[len] = 0;\r
110 FUNLOCKFILE(fp);\r
111 return (buf);\r
112 }\r
113 fp->_r -= (int)len;\r
114 fp->_p += len;\r
115 (void)memcpy((void *)s, (void *)p, len);\r
116 s += len;\r
117 n -= (int)len;\r
118 }\r
119 *s = 0;\r
120 FUNLOCKFILE(fp);\r
121 return (buf);\r
122}\r