[libc-commits] [libc] [libc] Character converter skeleton class (PR #143619)
Michael Jones via libc-commits
libc-commits at lists.llvm.org
Tue Jun 10 16:11:49 PDT 2025
================
@@ -0,0 +1,8 @@
+
+#include "hdr/types/wchar_t.h"
+
+struct mbstate_t {
+ wchar_t partial;
+ unsigned char bits_processed;
+ unsigned char total_bytes;
----------------
michaelrj-google wrote:
these should be `uint8_t` instead of unsigned char.
https://github.com/llvm/llvm-project/pull/143619
More information about the libc-commits
mailing list