]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - base64/base64_enc.h
bug fixing and support for malloc instead of stack memory (some functions)
[avr-crypto-lib.git] / base64 / base64_enc.h
index 906513221b1be150e0fdb2141c09601ba224e12c..dd3bc96bbe6604ace5c90f65ea82bdb80f1585a5 100644 (file)
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-
 #ifndef BASE64_ENC_H_
 #define BASE64_ENC_H_
 
 #include <stdint.h>
 
-void base64enc(char* dest, void* src, uint16_t length);
+void base64enc(char *dest, const void *src, uint16_t length);
 
 #endif /*BASE64_ENC_H_*/