Archived
1
Fork 0

Finish chapter 2

This commit is contained in:
Hadeed 2023-08-23 02:32:16 +05:00
parent c7a2e83a88
commit 282af378f2
3 changed files with 60 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.nvim.lua
kilo

4
Makefile Normal file
View file

@ -0,0 +1,4 @@
CCFLAGS := -Wall -Wextra -Wpedantic -Werror -std=c99
kilo: kilo.c
$(CC) $(CCFLAGS) kilo.c -o kilo

54
kilo.c Normal file
View file

@ -0,0 +1,54 @@
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
struct termios orig_termios;
void die(const char *s) {
perror(s);
exit(1);
}
void disable_raw_mode() {
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios) == -1)
die("tcsetattr");
}
void enable_raw_mode() {
if (tcgetattr(STDIN_FILENO, &orig_termios) == -1) die("tcgetattr");
atexit(disable_raw_mode);
struct termios raw = orig_termios;
raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
raw.c_oflag &= ~(OPOST);
raw.c_cflag |= (CS8);
raw.c_lflag &= ~(ECHO | ICANON | ISIG);
raw.c_cc[VMIN] = 0;
raw.c_cc[VTIME] = 1;
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) die("tcsetattr");
}
int main() {
enable_raw_mode();
while (1) {
char c = '\0';
if (read(STDIN_FILENO, &c, 1) == -1 && errno != EAGAIN) die("read");
if (iscntrl(c))
printf("%d\r\n", c);
else
printf("%d ('%c')\r\n", c, c);
if (c == 'q') break;
}
return 0;
}