]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - base64/base64_dec.h
adjusting test system debug uart reference
[avr-crypto-lib.git] / base64 / base64_dec.h
index 39beff84f6557870dff57947ec17ec6535292127..c6fa343bf98fef321721af695b9b5cc5acdcccac 100644 (file)
  *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-
 #ifndef BASE64_DEC_H_
 #define BASE64_DEC_H_
 
 #include <stdint.h>
 
-int base64_binlength(charstr, uint8_t strict);
-int base64dec(void* dest, char* b64str, uint8_t strict);
+int base64_binlength(char *str, uint8_t strict);
+int base64dec(void *dest, const char *b64str, uint8_t strict);
 
 #endif /*BASE64_DEC_H_*/