| 523 | */ |
| 524 | |
| 525 | int /* O - Status of call (0 = success) */ |
| 526 | httpDelete(http_t *http, /* I - HTTP connection */ |
| 527 | const char *uri) /* I - URI to delete */ |
| 528 | { |
| 529 | return (http_send(http, HTTP_STATE_DELETE, uri)); |
| 530 | } |
| 531 | |
| 532 | |
| 533 | /* |
nothing calls this directly
no test coverage detected