ensure latest log text is correct when appended

This commit is contained in:
jlamothe
2023-11-11 22:53:04 +00:00
parent 63f0bd73e4
commit 3393c3b9af
3 changed files with 49 additions and 0 deletions

View File

@@ -60,4 +60,12 @@ extern void chk_ptr_ne(
const void * // the prohibited value
);
// ensure two strings are equal
extern void chk_str_eq(
TestState *,
const char *, // the error context
const char *, // the actual value
const char * // the expected value
);
//jl