| 3181 | */ |
| 3182 | |
| 3183 | int /* O - Number of bytes written */ |
| 3184 | httpWrite(http_t *http, /* I - HTTP connection */ |
| 3185 | const char *buffer, /* I - Buffer for data */ |
| 3186 | int length) /* I - Number of bytes to write */ |
| 3187 | { |
| 3188 | return ((int)httpWrite2(http, buffer, (size_t)length)); |
| 3189 | } |
| 3190 | |
| 3191 | |
| 3192 | /* |
nothing calls this directly
no test coverage detected