[libc-commits] [libc] [libc] implement fputws (PR #196160)
Muhammad Bassiouni via libc-commits
libc-commits at lists.llvm.org
Thu May 7 06:22:21 PDT 2026
================
@@ -0,0 +1,38 @@
+//===-- Implementation of fputws ------------------------------------------===//
+//
+// 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/wchar/fputws.h"
+#include "hdr/types/FILE.h"
+#include "src/__support/File/file.h"
+#include "src/__support/common.h"
+#include "src/__support/libc_errno.h"
+#include "src/__support/macros/config.h"
+#include "src/__support/macros/null_check.h"
+#include "src/string/string_length.h"
----------------
bassiounix wrote:
```suggestion
#include "src/wchar/fputws.h"
#include "src/__support/File/file.h"
#include "src/__support/common.h"
#include "src/__support/libc_errno.h"
#include "src/__support/macros/null_check.h"
#include "src/string/string_length.h"
```
https://github.com/llvm/llvm-project/pull/196160
More information about the libc-commits
mailing list