diff -r c14b27abe452 -r 83d85e32c713 project_files/frontlib/base64/base64.h --- 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 -/* 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)