1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-20 13:55:53 +02:00
libcproject/test/test.h

15 lines
283 B
C
Raw Normal View History

2023-01-05 19:28:05 +01:00
#ifndef __TEST__
#define __TEST__
#include <stdbool.h>
2023-01-07 19:38:01 +01:00
#include <stdio.h>
#include <string.h>
2023-01-05 19:28:05 +01:00
2023-06-25 15:17:46 +02:00
#include "libcproject.h"
2023-01-05 19:28:05 +01:00
2023-06-25 15:17:46 +02:00
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);
2023-01-05 19:28:05 +01:00
#endif