| 1349 | */ |
| 1350 | |
| 1351 | char * /* O - Value or @code NULL@ */ |
| 1352 | httpGetSubField(http_t *http, /* I - HTTP connection */ |
| 1353 | http_field_t field, /* I - Field index */ |
| 1354 | const char *name, /* I - Name of sub-field */ |
| 1355 | char *value) /* O - Value string */ |
| 1356 | { |
| 1357 | return (httpGetSubField2(http, field, name, value, HTTP_MAX_VALUE)); |
| 1358 | } |
| 1359 | |
| 1360 | |
| 1361 | /* |
no test coverage detected