diff options
author | Wez Furlong <wez@php.net> | 2003-04-17 20:09:45 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-04-17 20:09:45 +0000 |
commit | a016cfb10a65247d29f83f1c44d4761fec3d05bf (patch) | |
tree | f81fd8dfb60412d28b7af60631b35bdb4e4d1922 /ext/sqlite/sqlite.c | |
parent | ec09b1b88191e6c6547684fb9a93c38b1c11e36f (diff) | |
download | php-git-a016cfb10a65247d29f83f1c44d4761fec3d05bf.tar.gz |
Folding markers
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index d38f45e14f..97fbf07875 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -111,8 +111,7 @@ static ZEND_RSRC_DTOR_FUNC(php_sqlite_result_dtor) efree(res); } -/* PHP Function interface */ - +/* {{{ PHP Function interface */ static void php_sqlite_function_callback(sqlite_func *func, int argc, const char **argv) { zval *retval = NULL; @@ -192,9 +191,9 @@ static void php_sqlite_function_callback(sqlite_func *func, int argc, const char efree(zargs); } } +/* }}} */ -/* Authorization Callback */ - +/* {{{ Authorization Callback */ static int php_sqlite_authorizer(void *autharg, int access_type, const char *arg3, const char *arg4) { switch (access_type) { @@ -216,6 +215,7 @@ static int php_sqlite_authorizer(void *autharg, int access_type, const char *arg return SQLITE_OK; } } +/* }}} */ PHP_MINIT_FUNCTION(sqlite) { |