From cf4328b16efe844461420da58f4f0b0f75964418 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 26 Oct 2000 07:12:49 +0000 Subject: Add some more stuff -- {get|set}mntent, getline, getdelim, etc. --- libc/stdio/getline.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libc/stdio/getline.c (limited to 'libc/stdio/getline.c') diff --git a/libc/stdio/getline.c b/libc/stdio/getline.c new file mode 100644 index 000000000..38440e1bf --- /dev/null +++ b/libc/stdio/getline.c @@ -0,0 +1,32 @@ +/* vi: set sw=4 ts=4: */ +/* + * getline for uclibc + * + * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen + * , + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#include +#include + +/* Basically getdelim() with the delimiter hard wired to '\n' */ +size_t getline(char **linebuf, size_t *n, FILE *file) +{ + return (getdelim (linebuf, n, '\n', file)); +} + -- cgit v1.2.3