Notcurses 3.0.13
a blingful library for TUIs and character graphics
Loading...
Searching...
No Matches
debug.c
Go to the documentation of this file.
1#include "internal.h"
2
4
5void notcurses_debug(const notcurses* nc, FILE* debugfp){
6 fbuf f;
7 if(fbuf_init_small(&f)){
8 return;
9 }
10 notcurses_debug_fbuf(nc, &f);
11 fbuf_finalize(&f, debugfp);
12}
ncloglevel_e loglevel
Definition debug.c:3
void notcurses_debug(const notcurses *nc, FILE *debugfp)
Definition debug.c:5
ncloglevel_e
Definition notcurses.h:968
@ NCLOGLEVEL_SILENT
Definition notcurses.h:969
Definition fbuf.h:25