blob: b65ef813a78c4d7c8224d19973a1ec4e055f34e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <curses.h>
int main(int argc, char *argv[]) {
char *buffer = 0;
size_t file_size = 0;
if (argc > 1) {
int file_descriptor = open(argv[1], O_RDONLY);
assert(file_descriptor != -1);
struct stat file_stat;
assert(stat(argv[1], &file_stat) != -1);
file_size = file_stat.st_size;
buffer = malloc(file_size);
assert(buffer);
assert(read(file_descriptor, buffer, file_size) != -1);
assert(close(file_descriptor) != -1);
}
initscr();
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
int window_height = getmaxy(stdscr);
int current_line = 0;
int number_of_lines = 0;
for (int i = 0; i < file_size; i++) {
if (buffer[i] == '\n') number_of_lines++;
}
int old_line = -1;
while (1) {
if (old_line != current_line) {
clear();
int iter_line = 0;
for (int i = 0; i < file_size && iter_line < window_height + current_line; i++) {
if (iter_line >= current_line) addch(buffer[i]);
if (buffer[i] == '\n') iter_line++;
}
}
old_line = current_line;
int input = getch();
switch (input) {
case KEY_UP:
if (current_line > 0) current_line--;
break;
case KEY_DOWN:
if (current_line < number_of_lines) current_line++;
}
}
endwin();
return 0;
}
|