您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
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. }