summaryrefslogtreecommitdiff
path: root/doc/source/cdef.rst
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2017-06-02 09:19:28 +0200
committerArmin Rigo <arigo@tunes.org>2017-06-02 09:19:28 +0200
commitbc37f2b89618d4ab879c91b2723edfca4783837e (patch)
treecbc0f55e5d757d6b1d123538cfe5d064059f46cf /doc/source/cdef.rst
parent8de4909d7ed5c046decde7ad3391358a775f1355 (diff)
downloadcffi-bc37f2b89618d4ab879c91b2723edfca4783837e.tar.gz
Document char16_t and char32_t
Diffstat (limited to 'doc/source/cdef.rst')
-rw-r--r--doc/source/cdef.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/source/cdef.rst b/doc/source/cdef.rst
index 81e433b..a88cbbe 100644
--- a/doc/source/cdef.rst
+++ b/doc/source/cdef.rst
@@ -178,7 +178,8 @@ can assume to exist are the standard types:
* intN_t, uintN_t (for N=8,16,32,64), intptr_t, uintptr_t, ptrdiff_t,
size_t, ssize_t
-* wchar_t (if supported by the backend)
+* wchar_t (if supported by the backend). *New in version 1.11:*
+ char16_t and char32_t.
* _Bool and bool (equivalent). If not directly supported by the C
compiler, this is declared with the size of ``unsigned char``.