1 2 3 4 5 6
#include <stdio.h> ssize_t getline(char **restrict s, size_t *restrict n, FILE *restrict f) { return getdelim(s, n, '\n', f); }