MCPcopy Create free account
hub / github.com/OpenPrinting/cups / _httpDecodeURI

Function _httpDecodeURI

cups/http-support.c:1698–1707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1696 */
1697
1698char * /* O - Decoded URI or NULL on error */
1699_httpDecodeURI(char *dst, /* I - Destination buffer */
1700 const char *src, /* I - Source URI */
1701 size_t dstsize) /* I - Size of destination buffer */
1702{
1703 if (http_copy_decode(dst, src, (int)dstsize, NULL, 1))
1704 return (dst);
1705 else
1706 return (NULL);
1707}
1708
1709
1710/*

Callers 1

new_requestFunction · 0.85

Calls 1

http_copy_decodeFunction · 0.85

Tested by

no test coverage detected