From a016cfb10a65247d29f83f1c44d4761fec3d05bf Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 17 Apr 2003 20:09:45 +0000 Subject: Folding markers --- ext/sqlite/sqlite.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/sqlite/sqlite.c') 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) { -- cgit v1.2.1