Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
kilo/README.md
Hadeed Ahmad 58de733df4 Fix the bug I was crying about in the last commit
It was a pretty simple fix. I used gdb to find it, was fun.
2023-09-24 04:37:17 +05:00

678 B

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.

References