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