notcurses/tests/main.h

14 lines
245 B
C
Raw Normal View History

2019-11-17 05:04:41 -05:00
#ifndef NOTCURSES_TEST_MAIN
#define NOTCURSES_TEST_MAIN
2020-01-15 12:22:10 -05:00
#include <unistd.h>
2019-11-17 05:04:41 -05:00
#include <notcurses.h>
#include <doctest/doctest.h>
2019-12-27 17:43:24 -05:00
char* find_data(const char* datum);
2019-11-17 05:04:41 -05:00
// some tests can only run in a utf8 environment
bool enforce_utf8();
2019-11-17 05:04:41 -05:00
#endif