├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── compile_flags.txt ├── config.def.h ├── images ├── logo.png └── preview.gif └── src ├── contacts.c ├── form_handler.c ├── include ├── contacts.h ├── form_handler.h ├── menu_handler.h ├── ui.h ├── utils.h └── window_handler.h ├── menu_handler.c ├── pbook.c ├── ui.c ├── utils.c └── window_handler.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/TODO.md -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/config.def.h -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/images/preview.gif -------------------------------------------------------------------------------- /src/contacts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/contacts.c -------------------------------------------------------------------------------- /src/form_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/form_handler.c -------------------------------------------------------------------------------- /src/include/contacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/include/contacts.h -------------------------------------------------------------------------------- /src/include/form_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/include/form_handler.h -------------------------------------------------------------------------------- /src/include/menu_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/include/menu_handler.h -------------------------------------------------------------------------------- /src/include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/include/ui.h -------------------------------------------------------------------------------- /src/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/include/utils.h -------------------------------------------------------------------------------- /src/include/window_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/include/window_handler.h -------------------------------------------------------------------------------- /src/menu_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/menu_handler.c -------------------------------------------------------------------------------- /src/pbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/pbook.c -------------------------------------------------------------------------------- /src/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/ui.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/window_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proh14/pbook/HEAD/src/window_handler.c --------------------------------------------------------------------------------