libsql-ffi 0.9.30

Native bindings to libSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2024 Anton Zhiyanov, MIT License
// https://github.com/nalgeon/sqlean

// SQLite extension for working with time.

#ifndef TIME_EXTENSION_H
#define TIME_EXTENSION_H

#include "sqlite3ext.h"

int time_init(sqlite3* db);

#endif /* TIME_EXTENSION_H */