* lib/base32.h (isbase32): Mark __attribute__ const as
suggested by GCC, and consistent with the base64 module.
+2015-09-01 Pádraig Brady <P@draigBrady.com>
+
+ base32: mark function as __attribute__ const
+ * lib/base32.h (isbase32): Mark __attribute__ const as
+ suggested by GCC, and consistent with the base64 module.
+
2015-08-20 Daiki Ueno <ueno@gnu.org>
gnulib-tool: don't transform binary files with sed
char buf[8];
};
-extern bool isbase32 (char ch);
+extern bool isbase32 (char ch) _GL_ATTRIBUTE_CONST;
extern void base32_encode (const char *restrict in, size_t inlen,
char *restrict out, size_t outlen);