aboutsummaryrefslogtreecommitdiff
path: root/source/cctype.elna
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-07-03 08:53:03 +0200
committerEugen Wissner <belka@caraus.de>2026-07-03 08:53:03 +0200
commit4ad6052aa2816f8296e62569272e99fc0d2fd3c1 (patch)
treee1002f3fc1d51929b6f7b77f4769eb84be4e9e82 /source/cctype.elna
parent453332311ac2d569093f9ef62d41d13b0ce024c8 (diff)
downloadelna-4ad6052aa2816f8296e62569272e99fc0d2fd3c1.tar.gz
Merge variable_expression and named_type_expression
Diffstat (limited to 'source/cctype.elna')
-rw-r--r--source/cctype.elna23
1 files changed, 16 insertions, 7 deletions
diff --git a/source/cctype.elna b/source/cctype.elna
index 3906cd1..13dc50a 100644
--- a/source/cctype.elna
+++ b/source/cctype.elna
@@ -1,14 +1,23 @@
(* This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can
obtain one at https://mozilla.org/MPL/2.0/. *)
-module;
-proc isdigit*(c: Int ) -> Int; extern;
-proc isalnum*(c: Int) -> Int; extern;
-proc isalpha*(c: Int) -> Int; extern;
-proc isspace*(c: Int) -> Int; extern;
+proc isdigit*(c: Int ) -> Int
+extern
-proc tolower*(c: Int) -> Int; extern;
-proc toupper*(c: Int) -> Int; extern;
+proc isalnum*(c: Int) -> Int
+extern
+
+proc isalpha*(c: Int) -> Int
+extern
+
+proc isspace*(c: Int) -> Int
+extern
+
+proc tolower*(c: Int) -> Int
+extern
+
+proc toupper*(c: Int) -> Int
+extern
end.