notcurses/tests/main.h

17 lines
371 B
C
Raw Normal View History

2019-11-17 10:04:41 +00:00
#ifndef NOTCURSES_TEST_MAIN
#define NOTCURSES_TEST_MAIN
2020-01-15 17:22:10 +00:00
#include <unistd.h>
#include "version.h"
#include <doctest/doctest.h>
#include <notcurses/notcurses.h>
#include <ncpp/NotCurses.hh>
#include <ncpp/_exceptions.hh>
#include "internal.h"
2019-12-27 22:43:24 +00:00
auto find_data(const char* datum) -> char*;
auto enforce_utf8() -> bool;
auto testing_notcurses() -> struct notcurses*;
2019-11-17 10:04:41 +00:00
#endif