Reads todos from json and make them available through filesystem.
Only reading title supported at this stage.
- libfuse
- libjson-c
$ sudo apt install libfuse-dev libjson-c-dev
gcc -Wall src/read_json.c `pkg-config fuse json-c --cflags --libs` -o bin/todofs
or
make
./bin/todofs mount_point -o filename=assets/todos.json
Written just for fun and to try c/json-c/libfuse