1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/src/ecmascript/localstorage-db.h

25 lines
587 B
C
Raw Normal View History

2021-10-25 15:43:07 +00:00
#ifndef EL__ECMASCRIPT_LOCALSTORAGE_DB_H
#define EL__ECMASCRIPT_LOCALSTORAGE_DB_H
#include <sqlite3.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2023-03-27 14:33:47 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2021-02-24 08:56:06 +00:00
int db_prepare_structure(char *db_name);
2022-01-30 11:48:21 +00:00
int db_delete_from(char *db_name, const char *key);
int db_insert_into(char *db_name, const char *key, const char *value);
int db_update_set(char *db_name, const char *key, const char *value);
char * db_query_by_key(char *db_name, const char *key);
char * db_qry_by_value(char *db_name, const char *val);
2023-03-27 14:33:47 +00:00
#ifdef __cplusplus
}
#endif
#endif