diff options
author | Stanislav Malyshev <stas@php.net> | 2015-01-03 01:22:58 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-01-10 15:07:38 -0800 |
commit | b7a7b1a624c97945c0aaa49d46ae996fc0bdb6bc (patch) | |
tree | 0e09490075ee4f9a75a77ef4168d8ee254c52e5b /ext/pdo_sqlite/php_pdo_sqlite.h | |
parent | 773c8b0c092a0e9ad5c5548815bcb9991d54d5c1 (diff) | |
download | php-git-b7a7b1a624c97945c0aaa49d46ae996fc0bdb6bc.tar.gz |
trailing whitespace removal
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite.h')
-rw-r--r-- | ext/pdo_sqlite/php_pdo_sqlite.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/pdo_sqlite/php_pdo_sqlite.h b/ext/pdo_sqlite/php_pdo_sqlite.h index 21977d7f2b..c9f7c6b2ba 100644 --- a/ext/pdo_sqlite/php_pdo_sqlite.h +++ b/ext/pdo_sqlite/php_pdo_sqlite.h @@ -35,9 +35,9 @@ PHP_RINIT_FUNCTION(pdo_sqlite); PHP_RSHUTDOWN_FUNCTION(pdo_sqlite); PHP_MINFO_FUNCTION(pdo_sqlite); -/* +/* Declare any global variables you may need between the BEGIN - and END macros here: + and END macros here: ZEND_BEGIN_MODULE_GLOBALS(pdo_sqlite) long global_value; @@ -45,12 +45,12 @@ ZEND_BEGIN_MODULE_GLOBALS(pdo_sqlite) ZEND_END_MODULE_GLOBALS(pdo_sqlite) */ -/* In every utility function you add that needs to use variables - in php_pdo_sqlite_globals, call TSRMLS_FETCH(); after declaring other +/* In every utility function you add that needs to use variables + in php_pdo_sqlite_globals, call TSRMLS_FETCH(); after declaring other variables used by that function, or better yet, pass in after the last function argument and declare your utility function with after the last declared argument. Always refer to - the globals in your function as PDO_SQLITE_G(variable). You are + the globals in your function as PDO_SQLITE_G(variable). You are encouraged to rename these macros something shorter, see examples in any other php module directory. */ |