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

18 lines
287B

  1. #include "tui.hpp"
  2. #include <stdio.h>
  3. #include <ncurses.h>
  4. #include "config.hpp"
  5. #include "db.hpp"
  6. static
  7. char * render_entry(const Entry * const entry, const char * const format) {
  8. return NULL;
  9. }
  10. signed tui_main(int argc, char * * argv) {
  11. read_config(NULL);
  12. return 0;
  13. }