* xmlGetLocalRngState: * * Returns the local RNG state. */
| 903 | * Returns the local RNG state. |
| 904 | */ |
| 905 | unsigned * |
| 906 | xmlGetLocalRngState(void) { |
| 907 | if (IS_MAIN_THREAD) |
| 908 | return(xmlMainThreadRngState); |
| 909 | else |
| 910 | return(xmlGetThreadLocalStorage(0)->localRngState); |
| 911 | } |
| 912 | #endif |
| 913 | |
| 914 | /* For backward compatibility */ |
no test coverage detected