| 511 | } |
| 512 | |
| 513 | void ckpt_url_encode(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 514 | { |
| 515 | const char* s = ScriptArgs(Parser, Param, NumArgs, "url_encode").str(0); |
| 516 | ReturnValue->Val->Pointer = strToRet(Http::encode(s)); |
| 517 | } |
| 518 | |
| 519 | /* ---- gui -------------------------------------------------------------- */ |
| 520 |
nothing calls this directly
no test coverage detected