[BACK]Return to test-sqlite3_errstr.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

File: [cvsweb.bsd.lv] / mandoc / Attic / test-sqlite3_errstr.c (download)

Revision 1.2, Tue Oct 6 18:32:20 2015 UTC (8 years, 6 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_13_4, VERSION_1_13
Changes since 1.1: +1 -1 lines

modernize style: "return" is not a function

#include <string.h>
#include <sqlite3.h>

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