X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fbase64.h;h=31c1cb89b42ae9e3eacfd74011b7a32a2f83e76b;hb=17b1bcca21624757189a619506e93b42f4706b77;hp=3f30b69acf112757c76afbce83caaa8ea5a8c8a5;hpb=4a65d555b1d57bc037b7fef9d04a611c43a44d86;p=libucw.git diff --git a/ucw/base64.h b/ucw/base64.h index 3f30b69a..31c1cb89 100644 --- a/ucw/base64.h +++ b/ucw/base64.h @@ -21,7 +21,7 @@ uns base64_encode(byte *dest, const byte *src, uns len); uns base64_decode(byte *dest, const byte *src, uns len); /** - * Use this macro to calculate base64_encode() output buffer size. + * Use this macro to calculate @base64_encode() output buffer size. */ #define BASE64_ENC_LENGTH(x) (((x)+2)/3 *4)