about summary refs log tree commit diff stats
path: root/base64.h
diff options
context:
space:
mode:
authorJoe DF <joedf@live.ca>2015-06-12 01:28:32 -0400
committerJoe DF <joedf@live.ca>2015-06-12 01:28:32 -0400
commit3fb8ce591c046465a0dab56ada3bbea98e66c7ef (patch)
treec0c468b111c61d81625fbc43da87b30e6124bcc7 /base64.h
parent71f83ced19dee4f28b604ae60c6cf21f2f603feb (diff)
downloadbase64-3fb8ce591c046465a0dab56ada3bbea98e66c7ef.tar.gz
Updated test.c and b64_decodef() works
Diffstat (limited to 'base64.h')
-rw-r--r--base64.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/base64.h b/base64.h
index d7a1072..22b00fb 100644
--- a/base64.h
+++ b/base64.h
@@ -2,7 +2,7 @@
 	base64.c - by Joe DF (joedf@ahkscript.org)
 	Released under the MIT License
 	
-	Revision: 2015-06-12 00:02:32
+	Revision: 2015-06-12 01:26:51
 	
 	Thank you for inspiration:
 	http://www.codeproject.com/Tips/813146/Fast-base-functions-for-encode-decode
@@ -36,4 +36,9 @@ unsigned int b64_decode(const unsigned char* in, unsigned int in_len, unsigned i
 // file-version b64_encode
 // Input : filenames
 // returns size of output
-unsigned int b64_encodef(char *InFile, char *OutFile);
\ No newline at end of file
+unsigned int b64_encodef(char *InFile, char *OutFile);
+
+// file-version b64_decode
+// Input : filenames
+// returns size of output
+unsigned int b64_decodef(char *InFile, char *OutFile);
\ No newline at end of file