X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ucw%2Fbase224.h;h=0dd2cab49b47894ffcb8c382f5ebe769d9d6a43f;hb=b8667492cf36a609939ee35ac42900ff0b0cc80f;hp=fded9f4c841a1c526eda3fa6122858e0d95658d9;hpb=a4f8b029b86d2ca1612a9c2e2795ccea27b15276;p=libucw.git diff --git a/ucw/base224.h b/ucw/base224.h index fded9f4c..0dd2cab4 100644 --- a/ucw/base224.h +++ b/ucw/base224.h @@ -17,13 +17,13 @@ * Stores them in @dest and returns the number of bytes the output * takes. */ -uns base224_encode(byte *dest, const byte *src, uns len); +uint base224_encode(byte *dest, const byte *src, uint len); /** * Decodes @len bytes of data pointed to by @src from base224 encoding. * All invalid characters are ignored. The result is stored into @dest * and length of the result is returned. */ -uns base224_decode(byte *dest, const byte *src, uns len); +uint base224_decode(byte *dest, const byte *src, uint len); /** * Use this macro to calculate @base224_encode() output buffer size.