| 663 | } |
| 664 | |
| 665 | static void Http_AddHeader(struct HttpRequest* req, const char* key, const cc_string* value) { |
| 666 | String_Format2((cc_string*)req->meta, "%c:%s\r\n", key, value); |
| 667 | } |
| 668 | |
| 669 | static cc_result HttpBackend_PerformRequest(struct HttpClientState* state) { |
| 670 | cc_result res; |
no test coverage detected