1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Added "const" to lots of "char*" parameters in the API. (CVS 298)

FossilOrigin-Name: 1c448f1fd2a2e103e7464df896174534d02152ed
This commit is contained in:
drh
2001-11-03 23:57:09 +00:00
parent a8b38d286e
commit 9f71c2e002
6 changed files with 24 additions and 24 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.47 2001/10/22 02:58:10 drh Exp $
** $Id: main.c,v 1.48 2001/11/03 23:57:09 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -428,7 +428,7 @@ int sqlite_complete(const char *zSql){
*/
int sqlite_exec(
sqlite *db, /* The database on which the SQL executes */
char *zSql, /* The SQL to be executed */
const char *zSql, /* The SQL to be executed */
sqlite_callback xCallback, /* Invoke this callback routine */
void *pArg, /* First argument to xCallback() */
char **pzErrMsg /* Write error messages here */