summaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/Posix/fgetln.cc
blob: b1b4665389a3c65929e06d22492b69f61996cd97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %clangxx -O0 -g %s -o %t && %run %t
// UNSUPPORTED: linux

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

int main(void) {
  FILE *fp = fopen("/etc/hosts", "r");
  assert(fp);

  size_t len;
  char *s = fgetln(fp, &len);

  printf("%.*s\n", (int)len, s);

  assert(!fclose(fp));

  return 0;
}