Files
tubestation/docs/nspr/reference/prunichar.rst
2022-02-02 17:19:51 +00:00

19 lines
376 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:: eval
#if defined(NS_WIN32)
typedef wchar_t PRUnichar;
#else
typedef PRUInt16 PRUnichar;
#endif