Files
sbase/libutil/agetline.c
T

14 lines
246 B
C
Raw Normal View History

2014-06-01 13:57:22 +02:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../text.h"
#include "../util.h"
ssize_t
agetline(char **p, size_t *size, FILE *fp)
{
return getline(p, size, fp);
}