]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/base64.h
Configure: Turned off -Winline
[libucw.git] / ucw / base64.h
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)