summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/pdo_firebird.c
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2004-06-12 17:09:33 +0000
committerArd Biesheuvel <abies@php.net>2004-06-12 17:09:33 +0000
commita312bb5ee3e5520fd3a9cbea301867a7d8132d47 (patch)
tree1bcdd88388723aaa33d2cec7656628aad33e60cf /ext/pdo_firebird/pdo_firebird.c
parentad568aab6fbc05ac8eb91904d1330070fa0c6544 (diff)
downloadphp-git-a312bb5ee3e5520fd3a9cbea301867a7d8132d47.tar.gz
Folding markers
Diffstat (limited to 'ext/pdo_firebird/pdo_firebird.c')
-rw-r--r--ext/pdo_firebird/pdo_firebird.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/ext/pdo_firebird/pdo_firebird.c b/ext/pdo_firebird/pdo_firebird.c
index bdb946f108..4e63546942 100644
--- a/ext/pdo_firebird/pdo_firebird.c
+++ b/ext/pdo_firebird/pdo_firebird.c
@@ -30,14 +30,12 @@
#include "php_pdo_firebird.h"
#include "php_pdo_firebird_int.h"
-/* {{{ pdo_firebird_functions[] */
-function_entry pdo_firebird_functions[] = {
+function_entry pdo_firebird_functions[] = { /* {{{ */
{NULL, NULL, NULL}
};
/* }}} */
-/* {{{ pdo_firebird_module_entry */
-zend_module_entry pdo_firebird_module_entry = {
+zend_module_entry pdo_firebird_module_entry = { /* {{{ */
STANDARD_MODULE_HEADER,
"PDO_Firebird",
pdo_firebird_functions,
@@ -55,9 +53,7 @@ zend_module_entry pdo_firebird_module_entry = {
ZEND_GET_MODULE(pdo_firebird)
#endif
-/* {{{ PHP_MINIT_FUNCTION
- */
-PHP_MINIT_FUNCTION(pdo_firebird)
+PHP_MINIT_FUNCTION(pdo_firebird) /* {{{ */
{
php_pdo_register_driver(&pdo_firebird_driver);
@@ -65,9 +61,7 @@ PHP_MINIT_FUNCTION(pdo_firebird)
}
/* }}} */
-/* {{{ PHP_MSHUTDOWN_FUNCTION
- */
-PHP_MSHUTDOWN_FUNCTION(pdo_firebird)
+PHP_MSHUTDOWN_FUNCTION(pdo_firebird) /* {{{ */
{
php_pdo_unregister_driver(&pdo_firebird_driver);
@@ -75,9 +69,7 @@ PHP_MSHUTDOWN_FUNCTION(pdo_firebird)
}
/* }}} */
-/* {{{ PHP_MINFO_FUNCTION
- */
-PHP_MINFO_FUNCTION(pdo_firebird)
+PHP_MINFO_FUNCTION(pdo_firebird) /* {{{ */
{
php_info_print_table_start();
php_info_print_table_header(2, "PDO Driver for Firebird/InterBase", "enabled");