[libc-commits] [libc] [libc] Add getgrent, setgrent, and endgrent entrypoints (PR #224372)
Jeff Bailey via libc-commits
libc-commits at lists.llvm.org
Thu Sep 17 12:30:11 PDT 2026
================
@@ -0,0 +1,26 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+///
+/// \file
+/// Header file for endgrent function.
+///
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBC_SRC_GRP_ENDGRENT_H
+#define LLVM_LIBC_SRC_GRP_ENDGRENT_H
+
+#include "src/__support/macros/config.h"
+
+namespace LIBC_NAMESPACE_DECL {
+
+// Closes the group database stream.
----------------
kaladron wrote:
Removed all three.
https://github.com/llvm/llvm-project/pull/224372
More information about the libc-commits
mailing list