summaryrefslogtreecommitdiff
path: root/src/kernel/tests/util.c
AgeCommit message (Collapse)Author
2021-11-14shared: use a single implementation of mem* functions everywheredzwdz
2021-09-21start using sparse's `-Wdecl`dzwdz
2021-09-19remove the unused static_strcmp macrodzwdz
2021-08-24replace () with (void) in function definitionsdzwdz
`()` means that any amt of arguments will be accepted, which isn't what i want
2021-08-04rename TEST_IF to TEST_CONDdzwdz
i'll be adding a TEST_STR macro soon, so TEST_COND makes more sense
2021-08-03fix inconsistent semicolonsdzwdz
2021-08-03kernel: implement static_strcmp()dzwdz
will be used to test functions operating on strings
2021-08-03kernel: implement memcmpdzwdz