| 1712 | */ |
| 1713 | |
| 1714 | char * /* O - Encoded URI */ |
| 1715 | _httpEncodeURI(char *dst, /* I - Destination buffer */ |
| 1716 | const char *src, /* I - Source URI */ |
| 1717 | size_t dstsize) /* I - Size of destination buffer */ |
| 1718 | { |
| 1719 | http_copy_encode(dst, src, dst + dstsize - 1, NULL, NULL, 1); |
| 1720 | return (dst); |
| 1721 | } |
| 1722 | |
| 1723 | |
| 1724 | /* |
no test coverage detected