agetline.c - ubase - suckless linux base utils | |
git clone git://git.suckless.org/ubase | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
agetline.c (246B) | |
--- | |
1 /* See LICENSE file for copyright and license details. */ | |
2 #include <stdio.h> | |
3 #include <stdlib.h> | |
4 #include <string.h> | |
5 | |
6 #include "../text.h" | |
7 #include "../util.h" | |
8 | |
9 ssize_t | |
10 agetline(char **p, size_t *size, FILE *fp) | |
11 { | |
12 return getline(p, size, fp); | |
13 } |