| 627 | } |
| 628 | |
| 629 | char * builtin_string_escape ( const char *str, Context * context, LineInfoArg * at ) { |
| 630 | if ( !str ) return nullptr; |
| 631 | return context->allocateString(escapeString(str,false), at); |
| 632 | } |
| 633 | |
| 634 | char * builtin_string_unescape ( const char *str, Context * context, LineInfoArg * at ) { |
| 635 | if ( !str ) return nullptr; |
nothing calls this directly
no test coverage detected