2 /* Copyright 1998 by the Massachusetts Institute of Technology.
4 * Permission to use, copy, modify, and distribute this
5 * software and its documentation for any purpose and without
6 * fee is hereby granted, provided that the above copyright
7 * notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting
9 * documentation, and that the name of M.I.T. not be used in
10 * advertising or publicity pertaining to distribution of the
11 * software without specific, written prior permission.
12 * M.I.T. makes no representations about the suitability of
13 * this software for any purpose. It is provided "as is"
14 * without express or implied warranty.
17 #include "ares_setup.h"
20 #include "ares_nowarn.h"
21 #include "ares_private.h"
23 /* This is an internal function. Its contract is to read a line from
24 * a file into a dynamically allocated buffer, zeroing the trailing
25 * newline if there is one. The calling routine may call
26 * ares__read_line multiple times with the same buf and bufsize
27 * pointers; *buf will be reallocated and *bufsize adjusted as
28 * appropriate. The initial value of *buf should be NULL. After the
29 * calling routine is done reading lines, it should free *buf.
31 int ares__read_line(FILE *fp, char **buf, size_t *bufsize)
47 int bytestoread = aresx_uztosi(*bufsize - offset);
49 if (!fgets(*buf + offset, bytestoread, fp))
50 return (offset != 0) ? 0 : (ferror(fp)) ? ARES_EFILE : ARES_EOF;
51 len = offset + strlen(*buf + offset);
52 if ((*buf)[len - 1] == '\n')
58 if(len < *bufsize - 1)
61 /* Allocate more space. */
62 newbuf = realloc(*buf, *bufsize * 2);