Mercurial
comparison deita/README.md @ 192:b818a4561a3c hg-web
Added AI genreated README.md. Needed to be read.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sat, 24 Jan 2026 21:52:14 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 191:a06710325c30 | 192:b818a4561a3c |
|---|---|
| 1 # deita | |
| 2 | |
| 3 SQLite database wrapper library for C. | |
| 4 | |
| 5 ## Features | |
| 6 | |
| 7 - Connection management | |
| 8 - Query building and execution | |
| 9 - Result handling | |
| 10 | |
| 11 ## Files | |
| 12 | |
| 13 | File | Description | | |
| 14 |------|-------------| | |
| 15 | `deita.h` | Public API header | | |
| 16 | `deita_internal.h` | Internal declarations | | |
| 17 | `d_sqlite.c` | SQLite wrapper implementation | | |
| 18 | `d_connection.c` | Connection handling | | |
| 19 | `d_query.c` | Query execution | | |
| 20 | `deita_test.c` | Unit tests | | |
| 21 | |
| 22 ## Usage | |
| 23 | |
| 24 ```c | |
| 25 #include "deita/deita.h" | |
| 26 ``` | |
| 27 | |
| 28 ## Building | |
| 29 | |
| 30 ```bash | |
| 31 bazel build //deita:deita | |
| 32 bazel test //deita:deita_test | |
| 33 ``` |