| 628 | #endif |
| 629 | |
| 630 | void fxDeleteScript(txScript* script) |
| 631 | { |
| 632 | if (script) { |
| 633 | if (script->symbolsBuffer) |
| 634 | c_free(script->symbolsBuffer); |
| 635 | if (script->hostsBuffer) |
| 636 | c_free(script->hostsBuffer); |
| 637 | if (script->codeBuffer) |
| 638 | c_free(script->codeBuffer); |
| 639 | c_free(script); |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | |
| 644 | const txUTF8Sequence gxUTF8Sequences[] ICACHE_RODATA_ATTR = { |
no outgoing calls
no test coverage detected