File: sqlite.h

package info (click to toggle)
cowsql 1.15.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,704 kB
  • sloc: ansic: 23,583; makefile: 137; python: 11
file content (17 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Global SQLite configuration. */

#ifndef TEST_SQLITE_H
#define TEST_SQLITE_H

#include "munit.h"

/* Setup SQLite global state. */
void test_sqlite_setup(const MunitParameter params[]);

/* Teardown SQLite global state. */
void test_sqlite_tear_down(void);

#define SETUP_SQLITE test_sqlite_setup(params);
#define TEAR_DOWN_SQLITE test_sqlite_tear_down();

#endif /* TEST_SQLITE_H */