]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/base64.h
ABI tools: Better reporting of missing files
[libucw.git] / ucw / base64.h
index 4575ef7d0ac3a6c4148b8fb2c766006bc6c3e0b2..2e2ad0313f2955ad768f39e8d7738b454d728e12 100644 (file)
  * Stores them in @dest and returns the number of bytes the output
  * takes.
  */
-uns base64_encode(byte *dest, const byte *src, uns len);
+uint base64_encode(byte *dest, const byte *src, uint len);
 /**
  * Decodes @len bytes of data pointed to by @src from base64 encoding.
  * All invalid characters are ignored. The result is stored into @dest
  * and length of the result is returned.
  */
-uns base64_decode(byte *dest, const byte *src, uns len);
+uint base64_decode(byte *dest, const byte *src, uint len);
 
 /**
  * Use this macro to calculate @base64_encode() output buffer size.