summaryrefslogtreecommitdiffstats
path: root/src/include/ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/ctype.h')
-rw-r--r--src/include/ctype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ctype.h b/src/include/ctype.h
index 7740443d..8a04f47e 100644
--- a/src/include/ctype.h
+++ b/src/include/ctype.h
@@ -6,6 +6,8 @@
* Character types
*/
+FILE_LICENCE ( GPL2_OR_LATER );
+
#define isdigit(c) ((c) >= '0' && (c) <= '9')
#define islower(c) ((c) >= 'a' && (c) <= 'z')
#define isupper(c) ((c) >= 'A' && (c) <= 'Z')