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