00001 /* 00002 ** Copyright 2005 - INL 00003 ** Written by Eric Leblond <regit@inl.fr> 00004 ** Vincent Deffontaines <vincent@inl.fr> 00005 ** INL http://www.inl.fr/ 00006 ** 00007 ** $Id: checks.h 2795 2007-02-26 08:00:17Z regit $ 00008 ** 00009 ** This program is free software; you can redistribute it and/or modify 00010 ** it under the terms of the GNU General Public License as published by 00011 ** the Free Software Foundation, version 3 of the License. 00012 ** 00013 ** This program is distributed in the hope that it will be useful, 00014 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 ** GNU General Public License for more details. 00017 ** 00018 ** You should have received a copy of the GNU General Public License 00019 ** along with this program; if not, write to the Free Software 00020 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00021 */ 00022 00023 #ifndef GETDELIM_H 00024 #define GETDELIM_H 00025 #include <config.h> 00026 00027 #ifdef FREEBSD 00028 ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp); 00029 #endif 00030 00031 #endif
1.4.7