summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVitaly Cheptsov <4348897+vit9696@users.noreply.github.com>2021-10-05 15:36:06 +0300
committerGitHub <noreply@github.com>2021-10-05 05:36:06 -0700
commit277c6066c8b76f084a238d28bd6193871eb0b74f (patch)
treeef4b91364f5606437e38ba2da7b6ad704492cc8c /utils
parentd4c2922407c486da1ba9c6cd769990cc64308be6 (diff)
downloadpycparser-277c6066c8b76f084a238d28bd6193871eb0b74f.tar.gz
Implement u8, u, and U strings from C11 (#439)
* Implement u8, u, and U strings from C11 * Also add u8, u, and U chars from C11 and C23 Co-authored-by: vit9696 <vit9696@users.noreply.github.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/fake_libc_include/_fake_typedefs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/fake_libc_include/_fake_typedefs.h b/utils/fake_libc_include/_fake_typedefs.h
index 9a85d40..3be1462 100644
--- a/utils/fake_libc_include/_fake_typedefs.h
+++ b/utils/fake_libc_include/_fake_typedefs.h
@@ -42,6 +42,8 @@ typedef int __ULong;
typedef int __FILE;
typedef int ptrdiff_t;
typedef int wchar_t;
+typedef int char16_t;
+typedef int char32_t;
typedef int __off_t;
typedef int __pid_t;
typedef int __loff_t;