rm unused func

This commit is contained in:
TLINDEN
2015-01-17 15:00:33 +01:00
parent 54e21f5a00
commit ea73c63c1c

View File

@@ -62,18 +62,6 @@ we pad the input with zeroes and remove them after decoding.
byte *pcp_padfour(byte *src, size_t srclen, size_t *dstlen); byte *pcp_padfour(byte *src, size_t srclen, size_t *dstlen);
/** Unpad padded input data.
It just calculates the size of the unpadded result (size - all trailing zeroes).
Doesn't allocate any memory or modify anything.
\param[in] src Padded data.
\param[in] srclen Size of padded data.
\return Returns the unpadded size of the data.
*/
size_t pcp_unpadfour(byte *src, size_t srclen);
/** Decode data from Z85 encoding. /** Decode data from Z85 encoding.
The input \a z85block may contain newlines which will be removed. The input \a z85block may contain newlines which will be removed.