ic-sqlite-vfs 0.2.1

SQLite VFS backed directly by Internet Computer stable memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
#ifndef IC_SQLITE_ASSERT_H
#define IC_SQLITE_ASSERT_H

#ifdef NDEBUG
#define assert(expr) ((void)0)
#else
void abort(void);
#define assert(expr) ((expr) ? (void)0 : abort())
#endif

#endif