1 // RUN: %clangxx -O0 -g %s -o %t -lutil && %run %t 2>&1 | FileCheck %s
11 size_t lineno
= 0, len
;
12 const char *delim
= "\\\\#";
13 FILE *fp
= fopen("/etc/fstab", "r");
15 line
= fparseln(fp
, &len
, &lineno
, delim
, 0);
16 hexdump(line
, len
, nullptr, 0);