A tiny text editor.
Hadeed Ahmad
c10f4a243b
Got stuck on a bug for a while, fix was to check for errors when using system calls. Lesson learned. |
||
---|---|---|
include | ||
src | ||
.gitignore | ||
Makefile | ||
README.md |
kilo
My implementation of the kilo text editor, which I wrote by following this tutorial.
How to build
As simple as it can be, there are no external dependencies.
You can either use the provided Makefile:
make kilo
Or if you don't have make, just compile and link all the source files together, specifying the include directory:
gcc -I include src/*.c -o kilo
My additions
- Split it up into multiple files and tried to follow good design and organization practices.