opnsense-src/contrib/mdocml/test-sqlite3_errstr.c

9 lines
120 B
C
Raw Normal View History

2014-11-22 13:08:25 -05:00
#include <string.h>
#include <sqlite3.h>
int
main(void)
{
2016-01-15 18:08:59 -05:00
return strcmp(sqlite3_errstr(SQLITE_OK), "not an error");
2014-11-22 13:08:25 -05:00
}