about summary refs log tree commit diff stats
path: root/base64.h
diff options
context:
space:
mode:
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