summaryrefslogtreecommitdiff
path: root/ext/sqlite3/libsqlite/sqlite3ext.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2018-01-04 14:13:08 +0800
committerXinchen Hui <laruence@gmail.com>2018-01-04 14:13:08 +0800
commit2bac0452145604e3a8e1bd557dbf0aef09fc5222 (patch)
tree9fcce9363434960e3b082ffe0051d8ddfc57b37a /ext/sqlite3/libsqlite/sqlite3ext.h
parentec69cb664fa67acde35aa2fe3872f34269057940 (diff)
parent6687e8db151907dab2447e5baa81693bcff98612 (diff)
downloadphp-git-2bac0452145604e3a8e1bd557dbf0aef09fc5222.tar.gz
Merge branch 'clean-up' of https://github.com/carusogabriel/php-src
* 'clean-up' of https://github.com/carusogabriel/php-src: Trailing whitespaces on Zend Trailing whitespaces on win32 Trailing whitespaces on sapi/* Trailing whitespaces on ext/*
Diffstat (limited to 'ext/sqlite3/libsqlite/sqlite3ext.h')
-rw-r--r--ext/sqlite3/libsqlite/sqlite3ext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sqlite3/libsqlite/sqlite3ext.h b/ext/sqlite3/libsqlite/sqlite3ext.h
index d1d2c574ae..d279ab223f 100644
--- a/ext/sqlite3/libsqlite/sqlite3ext.h
+++ b/ext/sqlite3/libsqlite/sqlite3ext.h
@@ -12,7 +12,7 @@
** This header file defines the SQLite interface for use by
** shared libraries that want to be imported as extensions into
** an SQLite instance. Shared libraries that intend to be loaded
-** as extensions by SQLite should #include this file instead of
+** as extensions by SQLite should #include this file instead of
** sqlite3.h.
*/
#ifndef SQLITE3EXT_H
@@ -561,14 +561,14 @@ typedef int (*sqlite3_loadext_entry)(
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
#if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION)
- /* This case when the file really is being compiled as a loadable
+ /* This case when the file really is being compiled as a loadable
** extension */
# define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api=0;
# define SQLITE_EXTENSION_INIT2(v) sqlite3_api=v;
# define SQLITE_EXTENSION_INIT3 \
extern const sqlite3_api_routines *sqlite3_api;
#else
- /* This case when the file is being statically linked into the
+ /* This case when the file is being statically linked into the
** application */
# define SQLITE_EXTENSION_INIT1 /*no-op*/
# define SQLITE_EXTENSION_INIT2(v) (void)v; /* unused parameter */