| 573 | } |
| 574 | |
| 575 | void ckpt_url_encode(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 576 | { |
| 577 | const char* s = ScriptArgs(Parser, Param, NumArgs, "url_encode").str(0); |
| 578 | ReturnValue->Val->Pointer = strToRet(Http::encode(s)); |
| 579 | } |
| 580 | |
| 581 | /* ---- gui -------------------------------------------------------------- */ |
| 582 |
nothing calls this directly
no test coverage detected