Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Joerg Jung <jung@openbsd.org> |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 3 | * |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 4 | * Permission to use, copy, modify, and distribute this software for any |
| 5 | * purpose with or without fee is hereby granted, provided that the above |
| 6 | * copyright notice and this permission notice appear in all copies. |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 7 | * |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 17 | /* |
| 18 | * portable fgetln() version, NOT reentrant |
| 19 | */ |
Nicholas Marriott | 09a6b8d | 2008-06-22 22:20:07 +0000 | [diff] [blame] | 20 | |
Nicholas Marriott | 09a6b8d | 2008-06-22 22:20:07 +0000 | [diff] [blame] | 21 | #include <stdio.h> |
Nicholas Marriott | 91f3165 | 2008-06-23 16:58:49 +0000 | [diff] [blame] | 22 | #include <stdlib.h> |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 23 | #include <errno.h> |
Nicholas Marriott | 09a6b8d | 2008-06-22 22:20:07 +0000 | [diff] [blame] | 24 | |
Nicholas Marriott | 3e495b4 | 2017-01-25 13:49:01 +0000 | [diff] [blame] | 25 | #include "compat.h" |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 26 | |
| 27 | char * |
Nicholas Marriott | 82f4db0 | 2012-03-02 11:23:51 +0000 | [diff] [blame] | 28 | fgetln(FILE *fp, size_t *len) |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 29 | { |
| 30 | static char *buf = NULL; |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 31 | static size_t bufsz = 0; |
| 32 | size_t r = 0; |
| 33 | char *p; |
| 34 | int c, e; |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 35 | |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 36 | if (!fp || !len) { |
| 37 | errno = EINVAL; |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 38 | return NULL; |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 39 | } |
Nicholas Marriott | e9d369a | 2016-02-19 13:35:46 +0000 | [diff] [blame] | 40 | if (!buf) { |
| 41 | if (!(buf = calloc(1, BUFSIZ))) |
| 42 | return NULL; |
| 43 | bufsz = BUFSIZ; |
| 44 | } |
| 45 | while ((c = getc(fp)) != EOF) { |
| 46 | buf[r++] = c; |
| 47 | if (r == bufsz) { |
| 48 | if (!(p = reallocarray(buf, 2, bufsz))) { |
| 49 | e = errno; |
| 50 | free(buf); |
| 51 | errno = e; |
| 52 | buf = NULL, bufsz = 0; |
| 53 | return NULL; |
| 54 | } |
| 55 | buf = p, bufsz = 2 * bufsz; |
| 56 | } |
| 57 | if (c == '\n') |
| 58 | break; |
| 59 | } |
| 60 | return (*len = r) ? buf : NULL; |
Nicholas Marriott | a52be0e | 2008-06-22 21:52:41 +0000 | [diff] [blame] | 61 | } |