notcurses/tests/main.h

18 lines
411 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>
#include "version.h"
2020-10-10 20:33:23 -04:00
#include "builddef.h"
#include <doctest/doctest.h>
#include <notcurses/notcurses.h>
#include <ncpp/NotCurses.hh>
#include <ncpp/_exceptions.hh>
#include "internal.h"
2019-12-27 17:43:24 -05:00
auto find_data(const char* datum) -> char*;
auto testing_notcurses() -> struct notcurses*;
2020-08-28 12:10:14 -04:00
auto ncreel_validate(const ncreel* n) -> bool;
2019-11-17 05:04:41 -05:00
#endif