mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
14 lines
214 B
C
14 lines
214 B
C
|
#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);
|
||
|
}
|