You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/include/notcurses.h

27 lines
599 B
C

#ifndef NOTCURSES_NOTCURSES
#define NOTCURSES_NOTCURSES
#ifdef __cplusplus
extern "C" {
#endif
const char* notcurses_version(void);
struct notcurses;
struct notcurses* notcurses_init(void);
int notcurses_stop(struct notcurses* nc);
// Make the physical screen match the virtual screen. Changes made to the
// virtual screen (i.e. most other calls) will not be visible until after a
// successful call to notcurses_render().
int notcurses_render(struct notcurses* nc);
int notcurses_term_dimensions(struct notcurses* n, int* rows, int* cols);
5 years ago
#ifdef __cplusplus
} // extern "C"
#endif
#endif