From: Michal Vaner Date: Sun, 14 Sep 2008 13:57:26 +0000 (+0200) Subject: ucw docs: basecode reflects the syntax change X-Git-Tag: holmes-import~290 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=1123861d61cbae4916751cd619c383bd38144b4d;p=libucw.git ucw docs: basecode reflects the syntax change --- diff --git a/ucw/base224.h b/ucw/base224.h index f1941919..beb17486 100644 --- a/ucw/base224.h +++ b/ucw/base224.h @@ -21,7 +21,7 @@ uns base224_encode(byte *dest, const byte *src, uns len); uns base224_decode(byte *dest, const byte *src, uns len); /** - * Use this macro to calculate base224_encode() output buffer size. + * Use this macro to calculate @base224_encode() output buffer size. * It can happen 4 more bytes would be needed, this macro takes care * of that. */ 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)