project_files/frontlib/base64/base64.h
changeset 8260 83d85e32c713
parent 7316 f7b49b2c5d84
--- a/project_files/frontlib/base64/base64.h	Thu Dec 06 10:01:01 2012 +0100
+++ b/project_files/frontlib/base64/base64.h	Tue Dec 04 09:24:10 2012 +0100
@@ -24,7 +24,7 @@
 /* Get bool. */
 # include <stdbool.h>
 
-/* This uses that the expression (n+(k-1))/k means the smallest
+/*! This uses that the expression (n+(k-1))/k means the smallest
    integer >= n/k, i.e., the ceiling of n/k.  */
 # define BASE64_LENGTH(inlen) ((((inlen) + 2) / 3) * 4)