| 700 | } |
| 701 | |
| 702 | static void SendIndent(dmWebServer::Request* request, int indent) |
| 703 | { |
| 704 | const char buf[4] = {' ', ' ', ' ', ' '}; |
| 705 | for (int i = 0; i < indent; ++i) |
| 706 | dmWebServer::Send(request, buf, sizeof(buf)); |
| 707 | } |
| 708 | |
| 709 | static void SendJsonEscapedText(dmWebServer::Request* request, const char* text) |
| 710 | { |
no test coverage detected