aboutsummaryrefslogtreecommitdiffhomepage
path: root/getlinetest.c
blob: 2a21a50188bbcec017e8660b34df5ab3300d3746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define _GNU_SOURCE
#include <stdio.h>
#include <sys/types.h>

int main()
{
  ssize_t count = 0;
  size_t n = 0;
  char **lineptr = NULL;
  FILE *stream = NULL;

  count = getline(lineptr, &n, stream);
}