blob: c5323637b12562385fe2cdb8811683540868ca2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
PR_Initialized
==============
Checks whether the runtime has been initialized.
Syntax
------
.. code::
#include <prinit.h>
PRBool PR_Initialized(void);
Returns
~~~~~~~
The function returns one of the following values:
- If :ref:`PR_Init` has already been called, ``PR_TRUE``.
- If :ref:`PR_Init` has not already been called, ``PR_FALSE``.
|