[libc-commits] [libc] [libc][stdio] Implement getline and getdelim POSIX functions (PR #219601)
Victor Campos via libc-commits
libc-commits at lists.llvm.org
Tue Sep 8 02:59:05 PDT 2026
================
@@ -0,0 +1,25 @@
+//===-- Implementation of getdelim ----------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/stdio/getdelim.h"
+
+#include "hdr/types/FILE.h"
+#include "hdr/types/size_t.h"
+#include "hdr/types/ssize_t.h"
+#include "src/__support/File/file.h"
+#include "src/__support/macros/attributes.h"
----------------
vhscampos wrote:
Same comment for `attributes.h`.
https://github.com/llvm/llvm-project/pull/219601
More information about the libc-commits
mailing list