mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
11 lines
206 B
C
11 lines
206 B
C
#ifndef __TEST__
|
|
#define __TEST__
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool assert_string_equal(const char *actual, const char *expected);
|
|
|
|
bool assert_string_not_equal(const char *actual, const char *expected);
|
|
|
|
#endif
|