/*- * Copyright (c) 1988 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)getline.c 5.1 (Berkeley) 04/17/91"; #endif /* not lint */ #include getline(s, lim) /* get line into s, return length */ char s[]; int lim; { int c, i; i = 0; while (--lim > 0 && (c=getchar()) != EOF && c != '\n') s[i++] = c; if (c == '\n') s[i++] = c; s[i] = '\0'; return(i); }