gitextract_cdfbzy5t/ ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.mk ├── include/ │ ├── ansi.h │ ├── base64.h │ ├── config.h │ ├── ctcp.h │ ├── dcc.h │ ├── editor.h │ ├── event.h │ ├── handler.h │ ├── helper.h │ ├── kirc.h │ ├── network.h │ ├── output.h │ ├── protocol.h │ ├── terminal.h │ ├── transport.h │ └── utf8.h ├── kirc.1 └── src/ ├── base64.c ├── config.c ├── ctcp.c ├── dcc.c ├── editor.c ├── event.c ├── handler.c ├── helper.c ├── main.c ├── network.c ├── output.c ├── protocol.c ├── terminal.c ├── transport.c └── utf8.c