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>
|
2020-02-18 17:36:16 +00:00
|
|
|
#include "version.h"
|
2020-05-20 22:36:25 +00:00
|
|
|
#include <doctest/doctest.h>
|
2020-02-18 17:36:16 +00:00
|
|
|
#include <notcurses/notcurses.h>
|
2020-05-20 22:36:25 +00:00
|
|
|
#include <ncpp/NotCurses.hh>
|
2020-05-22 07:31:03 +00:00
|
|
|
#include <ncpp/_exceptions.hh>
|
2020-05-20 22:36:25 +00:00
|
|
|
#include "internal.h"
|
2019-12-27 22:43:24 +00:00
|
|
|
|
2020-05-11 08:57:20 +00:00
|
|
|
auto find_data(const char* datum) -> char*;
|
|
|
|
auto enforce_utf8() -> bool;
|
2020-06-16 03:52:11 +00:00
|
|
|
auto testing_notcurses() -> struct notcurses*;
|
2020-08-28 16:10:14 +00:00
|
|
|
auto ncreel_validate(const ncreel* n) -> bool;
|
2019-11-17 10:04:41 +00:00
|
|
|
|
|
|
|
#endif
|