diff options
author | dzwdz | 2021-08-03 19:01:43 +0200 |
---|---|---|
committer | dzwdz | 2021-08-03 19:01:43 +0200 |
commit | 18380bea869c307c0ecf6fe4fa5801e5540bec4e (patch) | |
tree | b4130b82cb50629fa3f462aa5f5a064d30107100 /src/kernel/util.h | |
parent | 5d5b1d775984fe0112c0e1f60500c7d8e9850337 (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.h | 4 |
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)) |