(str, outPtr)
| 727 | // null-terminated and encoded in ASCII form. The copy will require at most str.length+1 bytes of space in the HEAP. |
| 728 | |
| 729 | function stringToAscii(str, outPtr) { |
| 730 | return writeAsciiToMemory(str, outPtr, false); |
| 731 | } |
| 732 | |
| 733 | |
| 734 | // Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns |
nothing calls this directly
no test coverage detected
searching dependent graphs…