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 General Public License
/* Written by Simon Josefsson. */#include <config.h>#include <stdio.h>ssize_tgetline(char**lineptr,size_t*n,FILE*stream){returngetdelim(lineptr,n,'\n',stream);}