1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-05 04:30:38 +03:00

Change the name of the include file to "sqlite3.h". The names of the shell

command and static library become "sqlite3" and "libsqlite3.a". (CVS 1510)

FossilOrigin-Name: 4c37b6d2b78e88e2a9dfed4d764caeb0f626f92e
This commit is contained in:
drh
2004-05-31 18:23:07 +00:00
parent 75d82cc4bf
commit 1d482dd917
6 changed files with 46 additions and 41 deletions

View File

@@ -12,12 +12,12 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
** $Id: shell.c,v 1.98 2004/05/24 07:04:26 danielk1977 Exp $
** $Id: shell.c,v 1.99 2004/05/31 18:23:08 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "sqlite.h"
#include "sqlite3.h"
#include <ctype.h>
#if !defined(_WIN32) && !defined(WIN32) && !defined(__MACOS__)
@@ -1349,6 +1349,3 @@ int main(int argc, char **argv){
if( db ) sqlite3_close(db);
return 0;
}