aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/storage_sqlite.h
blob: b133ab83eb7bf7fabc2964fa34f71125b750a01b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __STORAGE_SQLITE_H__
#define __STORAGE_SQLITE_H__

struct storage_settings;
struct storage_sqlite_setttings;

struct storage;
struct storage_sqlite;

int storage_sqlite_settings_create(struct storage_settings *, const char *path);
void storage_sqlite_settings_destroy(const struct storage_settings *);

int storage_sqlite_create(struct storage *, const struct storage_settings *);
void storage_sqlite_destroy(struct storage *);

int storage_sqlite_run_create(struct storage *, const char *repo_url, const char *rev);

#endif