Returns the cache directory. Writes to buf, returns buf for convenience. */
| 1885 | |
| 1886 | /* Returns the cache directory. Writes to buf, returns buf for convenience. */ |
| 1887 | static const char *cache_dir(char *buf, size_t bufsz) { |
| 1888 | const char *dir = cbm_resolve_cache_dir(); |
| 1889 | if (!dir) { |
| 1890 | dir = cbm_tmpdir(); |
| 1891 | } |
| 1892 | snprintf(buf, bufsz, "%s", dir); |
| 1893 | return buf; |
| 1894 | } |
| 1895 | |
| 1896 | /* Returns full .db path for a project: <cache_dir>/<project>.db */ |
| 1897 | static const char *project_db_path(const char *project, char *buf, size_t bufsz) { |
no test coverage detected