aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorMarvin Borner2021-05-08 19:07:20 +0200
committerMarvin Borner2021-05-08 19:07:20 +0200
commitf97343c268b0fc19bf93d509a019f3d13c7af5a4 (patch)
tree10913fc737b7da8a4c28e8cd9945429b1aac8a85 /libs
parent9d53b87be6a947bff78e202be5641990b58d47a0 (diff)
Better cmdline parsing
Diffstat (limited to 'libs')
-rw-r--r--libs/libc/inc/def.h22
1 files changed, 20 insertions, 2 deletions
diff --git a/libs/libc/inc/def.h b/libs/libc/inc/def.h
index 6253371..191a818 100644
--- a/libs/libc/inc/def.h
+++ b/libs/libc/inc/def.h
@@ -20,7 +20,7 @@ typedef signed long long s64;
typedef unsigned long long u64;
/**
- * Macros
+ * Useful macros
*/
#define UNUSED(a) ((void)(a))
@@ -30,10 +30,20 @@ typedef unsigned long long u64;
#define ABS(a) ((u32)(((s32)(a) < 0) ? -(a) : (a)))
+#define COUNT(a) (sizeof(a) / sizeof 0 [a])
+
+#define UPPER(a) ((a) >= 'A' && ((a) <= 'Z'))
+#define LOWER(a) ((a) >= 'a' && ((a) <= 'z'))
+#define ALPHA(a) (UPPER(a) || LOWER(a))
+#define NUMERIC(a) ((a) >= '0' && ((a) <= '9'))
+#define ALPHANUMERIC(a) (ALPHA(a) || NUMERIC(a))
+
#define __STRINGIFY(a) #a
#define STRINGIFY(a) __STRINGIFY(a)
-#define COUNT(a) (sizeof(a) / sizeof 0 [a])
+/**
+ * Compiler attribute wrappers
+ */
#define ATTR __attribute__
#define NORETURN ATTR((noreturn))
@@ -52,11 +62,19 @@ typedef unsigned long long u64;
#define NO_SANITIZE ATTR((no_sanitize("undefined")))
#define ALIGNED(align) ATTR((aligned(align)))
+/**
+ * Kernel section macros
+ */
+
#ifdef KERNEL
#define CLEAR NOINLINE ATTR((section(".temp_clear")))
#define PROTECTED ATTR((section(".temp_protect")))
#endif
+/**
+ * General macro numbers
+ */
+
#define EOF (-1)
#define NULL ((void *)0)