mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
f192cb7c3e
Fixes #791
39 lines
857 B
C++
39 lines
857 B
C++
|
|
#include <stdlib.h>
|
|
#include "config.h"
|
|
#define _XOPEN_SOURCE_EXTENDED 1
|
|
#include <locale.h>
|
|
|
|
#if defined HAVE_NCURSESW_CURSES_H
|
|
# include <ncursesw/curses.h>
|
|
#elif defined HAVE_NCURSESW_H
|
|
# include <ncursesw.h>
|
|
#elif defined HAVE_NCURSES_CURSES_H
|
|
# include <ncurses/curses.h>
|
|
#elif defined HAVE_NCURSES_H
|
|
# include <ncurses.h>
|
|
#elif defined HAVE_CURSES_H
|
|
# include <curses.h>
|
|
#else
|
|
# error "SysV or X/Open-compatible Curses header file required"
|
|
#endif
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
setenv("LANG", "en_US.utf-8", 1);
|
|
setlocale(LC_ALL, "");
|
|
|
|
WINDOW *stdscr = initscr();
|
|
cbreak();
|
|
char buf[1024];
|
|
FILE *file = fopen(argv[1], "r");
|
|
int row = 0;
|
|
while (!feof(file)) {
|
|
if (fgets(buf, sizeof(buf), file) != nullptr) {
|
|
mvwaddstr(stdscr, row++, 0, buf);
|
|
}
|
|
}
|
|
getch();
|
|
endwin();
|
|
}
|