]> mj.ucw.cz Git - libucw.git/commitdiff
ucw docs: basecode reflects the syntax change
authorMichal Vaner <vorner@ucw.cz>
Sun, 14 Sep 2008 13:57:26 +0000 (15:57 +0200)
committerMichal Vaner <vorner@ucw.cz>
Sun, 14 Sep 2008 13:57:26 +0000 (15:57 +0200)
ucw/base224.h
ucw/base64.h

index f1941919e6091be9c1fdcfce797b8ad30d43c17a..beb17486ced0da5945532d41f2576b421d09824d 100644 (file)
@@ -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.
  */
index 3f30b69acf112757c76afbce83caaa8ea5a8c8a5..31c1cb89b42ae9e3eacfd74011b7a32a2f83e76b 100644 (file)
@@ -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)