aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-sqlite3_errstr.c
blob: 041bf628991b0ec20408e0a10ec58b20019ff22f (plain) (blame)
1
2
3
4
5
6
7
8
#include <string.h>
#include <sqlite3.h>

int
main(void)
{
	return(strcmp(sqlite3_errstr(SQLITE_OK), "not an error"));
}