Searched refs:fgetln (Results 1 - 25 of 57) sorted by relevance

123

/freebsd-11-stable/contrib/mdocml/
H A Dtest-fgetln.c10 return(NULL != fgetln(stdin, &sz));
/freebsd-11-stable/contrib/blacklist/port/
H A Dfgetln.c1 /* $NetBSD: fgetln.c,v 1.1 2015/01/22 03:48:07 christos Exp $ */
47 fgetln(FILE *fp, size_t *len) function
100 while ((p = fgetln(stdin, &len)) != NULL) {
H A Dport.h72 char *fgetln(FILE *, size_t *);
H A Dfparseln.c49 #define __fgetln(f, l) fgetln(f, l)
105 * but unfortunately, fgetln does not let us
/freebsd-11-stable/usr.bin/asa/
H A Dasa.c101 if ((buf = fgetln(f, &len)) != NULL) {
117 while ((buf = fgetln(f, &len)) != NULL) {
/freebsd-11-stable/usr.sbin/fmtree/
H A Dexcludes.c75 while ((line = fgetln(fp, &len)) != NULL) {
/freebsd-11-stable/usr.sbin/vipw/
H A Dvipw.c120 if ((line = fgetln(stdin, &len)) == NULL) {
122 err(1, "fgetln()");
/freebsd-11-stable/lib/libpam/modules/pam_ftpusers/
H A Dpam_ftpusers.c77 while (!found && (line = fgetln(f, &len)) != NULL) {
/freebsd-11-stable/lib/libc/iconv/
H A Dcitrus_lookup_factory.c106 while ((line = fgetln(in, &size)) != NULL)
H A Dcitrus_pivot_factory.c210 while ((line = fgetln(in, &size)) != NULL)
/freebsd-11-stable/usr.sbin/services_mkdb/
H A Duniq.c74 while ((line = fgetln(fp, &len)) != NULL) {
/freebsd-11-stable/lib/libc/stdio/
H A Dfgetln.c34 static char sccsid[] = "@(#)fgetln.c 8.2 (Berkeley) 1/2/94";
37 __FBSDID("$FreeBSD: stable/11/lib/libc/stdio/fgetln.c 320942 2017-07-13 09:27:11Z kib $");
85 fgetln(FILE *fp, size_t *lenp) function
H A DMakefile.inc9 feof.c ferror.c fflush.c fgetc.c fgetln.c fgetpos.c fgets.c fgetwc.c \
37 MAN+= fclose.3 ferror.3 fflush.3 fgetln.3 fgets.3 fgetwln.3 fgetws.3 \
/freebsd-11-stable/usr.bin/head/
H A Dhead.c138 while (cnt && (cp = fgetln(fp, &readlen)) != NULL) {
/freebsd-11-stable/usr.bin/chpass/
H A Dedit.c94 if ((line = fgetln(stdin, &len)) == NULL) {
95 warn("fgetln()");
224 for (line = 1; (buf = fgetln(fp, &len)) != NULL; ++line) {
/freebsd-11-stable/usr.bin/vtfontcvt/
H A Dvtfontcvt.c304 while ((ln = fgetln(fp, &length)) != NULL) {
335 while ((ln = fgetln(fp, &length)) != NULL) {
358 while ((ln = fgetln(fp, &length)) != NULL) {
392 if ((ln = fgetln(fp, &length)) == NULL)
442 while ((ln = fgetln(fp, &length)) != NULL) {
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dh_resolv.c81 while ((line = fgetln(fp, &len)) != NULL) {
/freebsd-11-stable/lib/libutil/
H A Dfparseln.c105 * but unfortunately, fgetln does not let us
115 if ((ptr = fgetln(fp, &s)) == NULL)
/freebsd-11-stable/sbin/devfs/
H A Ddevfs.c152 cp = fgetln(fp, &rv);
/freebsd-11-stable/usr.sbin/chkgrp/
H A Dchkgrp.c93 if ((line = fgetln(gf, &len)) == NULL)
/freebsd-11-stable/usr.bin/cut/
H A Dcut.c279 while ((lbuf = fgetln(fp, &lbuflen)) != NULL) {
390 while ((lbuf = fgetln(fp, &lbuflen)) != NULL) {
/freebsd-11-stable/usr.sbin/setfmac/
H A Dsetfmac.c244 while ((line = fgetln(fp, &linesize)) != NULL) {
252 err(1, "fgetln on %s", file);
259 line = fgetln(fp, &linesize);
/freebsd-11-stable/tools/regression/tmpfs/
H A Dh_tools.c130 while ((line = fgetln(stdin, &len)) != NULL) {
/freebsd-11-stable/contrib/netbsd-tests/fs/tmpfs/
H A Dh_tools.c162 while ((line = fgetln(stdin, &len)) != NULL) {
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetcap.c742 line = fgetln(pfp, &len);
801 line = fgetln(pfp, &len);

Completed in 259 milliseconds

123