1
0
Fork 0
firefox/docs/nspr/reference/prunichar.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
371 B
ReStructuredText

PRUnichar
=========
An unsigned 16-bit type, like ``char`` in Java or the "characters" of a
JavaScript string defined in
`/mozilla/xpcom/base/nscore.h <http://hg.mozilla.org/mozilla-central/file/d35b4d003e9e/xpcom/base/nscore.h>`__.
Syntax
------
.. code::
#if defined(NS_WIN32)
typedef wchar_t PRUnichar;
#else
typedef PRUInt16 PRUnichar;
#endif