1
0
mirror of git://git.suckless.org/ubase synced 2024-12-11 09:15:34 +00:00
ubase/util/agetline.c

14 lines
246 B
C
Raw Normal View History

/* 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);
}