bolt/deps/llvm-18.1.8/compiler-rt/test/sanitizer_common/TestCases/Posix/fgetln.cpp
2025-02-14 19:21:04 +01:00

21 lines
363 B
C++

// RUN: %clangxx -O0 -g %s -o %t && %run %t
// fgetln is BSD-only.
// UNSUPPORTED: target={{.*(linux|solaris).*}}
#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;
}