2 * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * By using this file, you agree to the terms and conditions set
11 * forth in the LICENSE file which can be found at the top level of
12 * the sendmail distribution.
15 #pragma ident "%Z%%M% %I% %E% SMI"
18 SM_RCSID("@(#)$Id: fget.c,v 1.22 2001/08/27 18:54:14 gshapiro Exp $")
22 #include <sm/assert.h>
26 ** SM_IO_FGETS -- get a string from a file
28 ** Read at most n-1 characters from the given file.
29 ** Stop when a newline has been read, or the count ('n') runs out.
32 ** fp -- the file to read from
33 ** timeout -- time to complete reading the string in milliseconds
34 ** buf -- buffer to place read string in
38 ** success: returns value of 'buf'
39 ** failure: NULL (no characters were read)
40 ** timeout: NULL and errno set to EAGAIN
43 ** may move the file pointer
47 sm_io_fgets(fp
, timeout
, buf
, n
)
48 register SM_FILE_T
*fp
;
55 register unsigned char *p
, *t
;
57 SM_REQUIRE_ISA(fp
, SmFileMagic
);
58 if (n
<= 0) /* sanity check */
62 n
--; /* leave space for NUL */
65 /* If the buffer is empty, refill it. */
66 if ((len
= fp
->f_r
) <= 0)
70 ** Timeout is only passed if we can't get the data
71 ** from the buffer (which is counted as immediately).
74 if (sm_refill(fp
, timeout
) != 0)
76 /* EOF/error: stop with partial or no line */
86 ** Scan through at most n bytes of the current buffer,
87 ** looking for '\n'. If found, copy up to and including
88 ** newline, and stop. Otherwise, copy entire chunk
94 t
= (unsigned char *) memchr((void *) p
, '\n', len
);
100 (void) memcpy((void *) s
, (void *) p
, len
);
106 (void) memcpy((void *) s
, (void *) p
, len
);