From ea73c63c1cbb1f58ed789ddece82c256fedc22d0 Mon Sep 17 00:00:00 2001 From: TLINDEN Date: Sat, 17 Jan 2015 15:00:33 +0100 Subject: [PATCH] rm unused func --- include/pcp/z85.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/pcp/z85.h b/include/pcp/z85.h index 0ce0a30..090fbfa 100644 --- a/include/pcp/z85.h +++ b/include/pcp/z85.h @@ -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); -/** 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. The input \a z85block may contain newlines which will be removed.