(ptr)
| 714 | // a copy of that string as a Javascript String object. |
| 715 | |
| 716 | function AsciiToString(ptr) { |
| 717 | var str = ''; |
| 718 | while (1) { |
| 719 | var ch = HEAP8[((ptr++)>>0)]; |
| 720 | if (!ch) return str; |
| 721 | str += String.fromCharCode(ch); |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | |
| 726 | // Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr', |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…