X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=tmp.c;h=a806ff446234c39c9bd610167e29896ca96e4c5e;hb=70ce4d7eba90b5da6f9187eb217794db6f153888;hp=8fbfa0d1edc4d5aa548d58afffc5ac13086bff4d;hpb=f4e453fa3619de52dce9d98c5ad1441982c46539;p=smdp.git diff --git a/tmp.c b/tmp.c index 8fbfa0d..a806ff4 100644 --- a/tmp.c +++ b/tmp.c @@ -5,6 +5,7 @@ #include #include "include/parser.h" +#include "include/viewer.h" void usage() { fprintf(stderr, "Usage: tmp [OPTION]... [FILE]\n"); @@ -59,15 +60,17 @@ int main(int argc, char *argv[]) { } // load deck object from input - deck_t *doc; - doc = markdown_load(input); + deck_t *deck; + deck = markdown_load(input); //TODO close file if(debug > 0) { - markdown_debug(doc, debug); + markdown_debug(deck, debug); } + ncurses_display(deck, 0, 0); + return(EXIT_SUCCESS); }