summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.txt4
-rw-r--r--u8c/include/u8c/u8c.h2
-rw-r--r--u8c/source/character/is_control.c2
-rw-r--r--u8c/source/character/is_numeric.c2
4 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 7091b5a..deb069b 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,7 @@
+# 27
+
+* Add missing newlines and end-of-files
+
# 26
* Update comments
diff --git a/u8c/include/u8c/u8c.h b/u8c/include/u8c/u8c.h
index 05d9089..8b72836 100644
--- a/u8c/include/u8c/u8c.h
+++ b/u8c/include/u8c/u8c.h
@@ -88,7 +88,7 @@
#endif
-#define u8c_VERSION ((uint_least32_t)+UINT32_C(0x1E))
+#define u8c_VERSION ((uint_least32_t)+UINT32_C(0x1F))
#define u8c_MAXIMUM_CODE_POINT ((uint_least32_t)+UINT32_C(0x0010FFFF))
diff --git a/u8c/source/character/is_control.c b/u8c/source/character/is_control.c
index f6a0ddd..1a8aa77 100644
--- a/u8c/source/character/is_control.c
+++ b/u8c/source/character/is_control.c
@@ -105,4 +105,4 @@ bool u8c_is_control(uint_least32_t const code_point) {
case UINT32_C(0x2069): // POP DIRECTIONAL ISOLATE
return true;
}
-} \ No newline at end of file
+}
diff --git a/u8c/source/character/is_numeric.c b/u8c/source/character/is_numeric.c
index a796a0e..ce94336 100644
--- a/u8c/source/character/is_numeric.c
+++ b/u8c/source/character/is_numeric.c
@@ -45,4 +45,4 @@ bool u8c_is_numeric(uint_least32_t const code_point) {
case UINT32_C(0x218B): // TURNED DIGIT THREE
return true;
}
-} \ No newline at end of file
+}