From 26ce5ad3876f0ea63ab67a8bdb2ed1a5a1591a3e Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 1 Jan 1996 11:01:15 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELENG_2_1_0_RELEASE'. This commit was manufactured to restore the state of the 2.1-RELEASE image. Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs. --- eBones/lib/libkrb/fgetst.c | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 eBones/lib/libkrb/fgetst.c (limited to 'eBones/lib/libkrb/fgetst.c') diff --git a/eBones/lib/libkrb/fgetst.c b/eBones/lib/libkrb/fgetst.c deleted file mode 100644 index 796caca7ff746..0000000000000 --- a/eBones/lib/libkrb/fgetst.c +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright 1987, 1988 by the Massachusetts Institute of Technology. - * For copying and distribution information, please see the file - * . - * - * from: fgetst.c,v 4.0 89/01/23 10:08:31 jtkohl Exp $ - * $Id: fgetst.c,v 1.3 1995/07/18 16:38:23 mark Exp $ - */ - -#if 0 -#ifndef lint -static char rcsid[] = -"$Id: fgetst.c,v 1.3 1995/07/18 16:38:23 mark Exp $"; -#endif /* lint */ -#endif - -#include - -/* - * fgetst takes a file descriptor, a character pointer, and a count. - * It reads from the file it has either read "count" characters, or - * until it reads a null byte. When finished, what has been read exists - * in "s". If "count" characters were actually read, the last is changed - * to a null, so the returned string is always null-terminated. fgetst - * returns the number of characters read, including the null terminator. - */ - -int -fgetst(f, s, n) - FILE *f; - register char *s; - int n; -{ - register int count = n; - int ch; /* NOT char; otherwise you don't see EOF */ - - while ((ch = getc(f)) != EOF && ch && --count) { - *s++ = ch; - } - *s = '\0'; - return (n - count); -} -- cgit v1.2.3