summaryrefslogtreecommitdiff
path: root/src/kernel/util.h
diff options
context:
space:
mode:
authordzwdz2021-08-03 19:01:43 +0200
committerdzwdz2021-08-03 19:01:43 +0200
commit18380bea869c307c0ecf6fe4fa5801e5540bec4e (patch)
treeb4130b82cb50629fa3f462aa5f5a064d30107100 /src/kernel/util.h
parent5d5b1d775984fe0112c0e1f60500c7d8e9850337 (diff)
kernel: implement static_strcmp()
will be used to test functions operating on strings
Diffstat (limited to 'src/kernel/util.h')
-rw-r--r--src/kernel/util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/kernel/util.h b/src/kernel/util.h
index b50810d..0aa2c4c 100644
--- a/src/kernel/util.h
+++ b/src/kernel/util.h
@@ -8,3 +8,7 @@ void *memcpy(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
int memcmp(const void *s1, const void *s2, size_t n);
+
+// s1 MUST be a string known at compiletime
+#define static_strcmp(s1, s2) \
+ memcmp(s1, s2, sizeof(s1))