Skip to content

Commit 23e4385

Browse files
committed
- Make usage of new PHP_FE_END macro
1 parent 054e1ca commit 23e4385

File tree

111 files changed

+170
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+170
-172
lines changed

ext/bcmath/bcmath.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const zend_function_entry bcmath_functions[] = {
106106
PHP_FE(bcscale, arginfo_bcscale)
107107
PHP_FE(bccomp, arginfo_bccomp)
108108
PHP_FE(bcpowmod, arginfo_bcpowmod)
109-
{NULL, NULL, NULL}
109+
PHP_FE_END
110110
};
111111

112112
zend_module_entry bcmath_module_entry = {

ext/bz2/bz2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static const zend_function_entry bz2_functions[] = {
107107
PHP_FE(bzerror, arginfo_bzerror)
108108
PHP_FE(bzcompress, arginfo_bzcompress)
109109
PHP_FE(bzdecompress, arginfo_bzdecompress)
110-
{NULL, NULL, NULL}
110+
PHP_FE_END
111111
};
112112

113113
zend_module_entry bz2_module_entry = {

ext/calendar/calendar.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const zend_function_entry calendar_functions[] = {
148148
PHP_FE(cal_from_jd, arginfo_cal_from_jd)
149149
PHP_FE(cal_days_in_month, arginfo_cal_days_in_month)
150150
PHP_FE(cal_info, arginfo_cal_info)
151-
{NULL, NULL, NULL}
151+
PHP_FE_END
152152
};
153153

154154

ext/com_dotnet/com_extension.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ const zend_function_entry com_dotnet_functions[] = {
228228
PHP_FE(com_message_pump, arginfo_com_message_pump)
229229
PHP_FE(com_load_typelib, arginfo_com_load_typelib)
230230
PHP_FE(com_get_active_object, arginfo_com_get_active_object)
231-
{ NULL, NULL, NULL }
231+
PHP_FE_END
232232
};
233233

234234
/* {{{ com_dotnet_module_entry

ext/com_dotnet/com_persist.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ static const zend_function_entry com_persist_helper_methods[] = {
697697
CPH_ME(InitNew, NULL)
698698
CPH_ME(LoadFromStream, NULL)
699699
CPH_ME(SaveToStream, NULL)
700-
{NULL, NULL, NULL}
700+
PHP_FE_END
701701
};
702702

703703
static void helper_free_storage(void *obj TSRMLS_DC)

ext/ctype/ctype.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static const zend_function_entry ctype_functions[] = {
106106
PHP_FE(ctype_space, arginfo_ctype_space)
107107
PHP_FE(ctype_upper, arginfo_ctype_upper)
108108
PHP_FE(ctype_xdigit, arginfo_ctype_xdigit)
109-
{NULL, NULL, NULL} /* Must be the last line in ctype_functions[] */
109+
PHP_FE_END
110110
};
111111
/* }}} */
112112

ext/curl/interface.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ const zend_function_entry curl_functions[] = {
307307
PHP_FE(curl_multi_getcontent, arginfo_curl_multi_getcontent)
308308
PHP_FE(curl_multi_info_read, arginfo_curl_multi_info_read)
309309
PHP_FE(curl_multi_close, arginfo_curl_multi_close)
310-
{NULL, NULL, NULL}
310+
PHP_FE_END
311311
};
312312
/* }}} */
313313

ext/date/php_date.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ const zend_function_entry date_functions[] = {
425425
PHP_FE(date_sunrise, arginfo_date_sunrise)
426426
PHP_FE(date_sunset, arginfo_date_sunset)
427427
PHP_FE(date_sun_info, arginfo_date_sun_info)
428-
{NULL, NULL, NULL}
428+
PHP_FE_END
429429
};
430430

431431
const zend_function_entry date_funcs_date[] = {
@@ -447,7 +447,7 @@ const zend_function_entry date_funcs_date[] = {
447447
PHP_ME_MAPPING(setTimestamp, date_timestamp_set, arginfo_date_method_timestamp_set, 0)
448448
PHP_ME_MAPPING(getTimestamp, date_timestamp_get, arginfo_date_method_timestamp_get, 0)
449449
PHP_ME_MAPPING(diff, date_diff, arginfo_date_method_diff, 0)
450-
{NULL, NULL, NULL}
450+
PHP_FE_END
451451
};
452452

453453
const zend_function_entry date_funcs_timezone[] = {
@@ -458,19 +458,19 @@ const zend_function_entry date_funcs_timezone[] = {
458458
PHP_ME_MAPPING(getLocation, timezone_location_get, arginfo_timezone_method_location_get, 0)
459459
PHP_ME_MAPPING(listAbbreviations, timezone_abbreviations_list, arginfo_timezone_abbreviations_list, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
460460
PHP_ME_MAPPING(listIdentifiers, timezone_identifiers_list, arginfo_timezone_identifiers_list, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
461-
{NULL, NULL, NULL}
461+
PHP_FE_END
462462
};
463463

464464
const zend_function_entry date_funcs_interval[] = {
465465
PHP_ME(DateInterval, __construct, arginfo_date_interval_construct, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
466466
PHP_ME_MAPPING(format, date_interval_format, arginfo_date_method_interval_format, 0)
467467
PHP_ME_MAPPING(createFromDateString, date_interval_create_from_date_string, arginfo_date_interval_create_from_date_string, ZEND_ACC_PUBLIC|ZEND_ACC_STATIC)
468-
{NULL, NULL, NULL}
468+
PHP_FE_END
469469
};
470470

471471
const zend_function_entry date_funcs_period[] = {
472472
PHP_ME(DatePeriod, __construct, arginfo_date_period_construct, ZEND_ACC_CTOR|ZEND_ACC_PUBLIC)
473-
{NULL, NULL, NULL}
473+
PHP_FE_END
474474
};
475475

476476
static char* guess_timezone(const timelib_tzdb *tzdb TSRMLS_DC);

ext/dba/dba.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const zend_function_entry dba_functions[] = {
145145
PHP_FE(dba_handlers, arginfo_dba_handlers)
146146
PHP_FE(dba_list, arginfo_dba_list)
147147
PHP_FE(dba_key_split, arginfo_dba_key_split)
148-
{NULL, NULL, NULL}
148+
PHP_FE_END
149149
};
150150
/* }}} */
151151

ext/dom/attr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ZEND_END_ARG_INFO();
4949
const zend_function_entry php_dom_attr_class_functions[] = {
5050
PHP_FALIAS(isId, dom_attr_is_id, arginfo_dom_attr_is_id)
5151
PHP_ME(domattr, __construct, arginfo_dom_attr_construct, ZEND_ACC_PUBLIC)
52-
{NULL, NULL, NULL}
52+
PHP_FE_END
5353
};
5454

5555
/* {{{ proto void DOMAttr::__construct(string name, [string value]); */

ext/dom/cdatasection.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ZEND_END_ARG_INFO();
4343

4444
const zend_function_entry php_dom_cdatasection_class_functions[] = {
4545
PHP_ME(domcdatasection, __construct, arginfo_dom_cdatasection_construct, ZEND_ACC_PUBLIC)
46-
{NULL, NULL, NULL}
46+
PHP_FE_END
4747
};
4848

4949
/* {{{ proto void DOMCdataSection::__construct(string value); */

ext/dom/characterdata.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const zend_function_entry php_dom_characterdata_class_functions[] = {
6868
PHP_FALIAS(insertData, dom_characterdata_insert_data, arginfo_dom_characterdata_insert_data)
6969
PHP_FALIAS(deleteData, dom_characterdata_delete_data, arginfo_dom_characterdata_delete_data)
7070
PHP_FALIAS(replaceData, dom_characterdata_replace_data, arginfo_dom_characterdata_replace_data)
71-
{NULL, NULL, NULL}
71+
PHP_FE_END
7272
};
7373

7474
/* {{{ data string

ext/dom/document.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ const zend_function_entry php_dom_document_class_functions[] = { /* {{{ */
229229
PHP_FALIAS(relaxNGValidateSource, dom_document_relaxNG_validate_xml, arginfo_dom_document_relaxNG_validate_xml)
230230
#endif
231231
PHP_ME(domdocument, registerNodeClass, arginfo_dom_document_registernodeclass, ZEND_ACC_PUBLIC)
232-
{NULL, NULL, NULL}
232+
PHP_FE_END
233233
};
234234
/* }}} */
235235

ext/dom/documentfragment.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ZEND_END_ARG_INFO();
4646
const zend_function_entry php_dom_documentfragment_class_functions[] = {
4747
PHP_ME(domdocumentfragment, __construct, arginfo_dom_documentfragement_construct, ZEND_ACC_PUBLIC)
4848
PHP_ME(domdocumentfragment, appendXML, arginfo_dom_documentfragement_appendXML, ZEND_ACC_PUBLIC)
49-
{NULL, NULL, NULL}
49+
PHP_FE_END
5050
};
5151

5252
/* {{{ proto void DOMDocumentFragment::__construct(); */

ext/dom/documenttype.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636

3737
const zend_function_entry php_dom_documenttype_class_functions[] = {
38-
{NULL, NULL, NULL}
38+
PHP_FE_END
3939
};
4040

4141
/* {{{ name string

ext/dom/domconfiguration.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const zend_function_entry php_dom_domconfiguration_class_functions[] = {
5454
PHP_FALIAS(setParameter, dom_domconfiguration_set_parameter, arginfo_dom_configuration_set_parameter)
5555
PHP_FALIAS(getParameter, dom_domconfiguration_get_parameter, arginfo_dom_configuration_get_parameter)
5656
PHP_FALIAS(canSetParameter, dom_domconfiguration_can_set_parameter, arginfo_dom_configuration_can_set_parameter)
57-
{NULL, NULL, NULL}
57+
PHP_FE_END
5858
};
5959

6060
/* {{{ attribute protos, not implemented yet */

ext/dom/domerror.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*/
3737

3838
const zend_function_entry php_dom_domerror_class_functions[] = {
39-
{NULL, NULL, NULL}
39+
PHP_FE_END
4040
};
4141

4242
/* {{{ attribute protos, not implemented yet */

ext/dom/domerrorhandler.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ZEND_END_ARG_INFO();
4242

4343
const zend_function_entry php_dom_domerrorhandler_class_functions[] = {
4444
PHP_FALIAS(handleError, dom_domerrorhandler_handle_error, arginfo_dom_domerrorhandler_handle_error)
45-
{NULL, NULL, NULL}
45+
PHP_FE_END
4646
};
4747

4848
/* {{{ attribute protos, not implemented yet */

ext/dom/domexception.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
extern zend_class_entry *dom_domexception_class_entry;
3838

3939
const zend_function_entry php_dom_domexception_class_functions[] = {
40-
{NULL, NULL, NULL}
40+
PHP_FE_END
4141
};
4242

4343
void php_dom_throw_error_with_message(int error_code, char *error_message, int strict_error TSRMLS_DC) /* {{{ */

ext/dom/domimplementation.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const zend_function_entry php_dom_domimplementation_class_functions[] = {
6161
PHP_ME(domimplementation, hasFeature, arginfo_dom_implementation_has_feature, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
6262
PHP_ME(domimplementation, createDocumentType, arginfo_dom_implementation_create_documenttype, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
6363
PHP_ME(domimplementation, createDocument, arginfo_dom_implementation_create_document, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
64-
{NULL, NULL, NULL}
64+
PHP_FE_END
6565
};
6666

6767
/* {{{ proto boolean dom_domimplementation_has_feature(string feature, string version);

ext/dom/domimplementationsource.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ZEND_END_ARG_INFO();
4848
const zend_function_entry php_dom_domimplementationsource_class_functions[] = {
4949
PHP_FALIAS(getDomimplementation, dom_domimplementationsource_get_domimplementation, arginfo_dom_implementationsource_getdomimplementation)
5050
PHP_FALIAS(getDomimplementations, dom_domimplementationsource_get_domimplementations, arginfo_dom_implementationsource_getdomimplementations)
51-
{NULL, NULL, NULL}
51+
PHP_FE_END
5252
};
5353

5454
/* {{{ attribute protos, not implemented yet */

ext/dom/domlocator.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*/
3737

3838
const zend_function_entry php_dom_domlocator_class_functions[] = {
39-
{NULL, NULL, NULL}
39+
PHP_FE_END
4040
};
4141

4242
/* {{{ attribute protos, not implemented yet */

ext/dom/domstringlist.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ZEND_END_ARG_INFO();
4242

4343
const zend_function_entry php_dom_domstringlist_class_functions[] = {
4444
PHP_FALIAS(item, dom_domstringlist_item, arginfo_dom_stringlist_item)
45-
{NULL, NULL, NULL}
45+
PHP_FE_END
4646
};
4747

4848
/* {{{ attribute protos, not implemented yet */

ext/dom/element.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const zend_function_entry php_dom_element_class_functions[] = { /* {{{ */
146146
PHP_FALIAS(setIdAttributeNS, dom_element_set_id_attribute_ns, arginfo_dom_element_set_id_attribute_ns)
147147
PHP_FALIAS(setIdAttributeNode, dom_element_set_id_attribute_node, arginfo_dom_element_set_id_attribute_node)
148148
PHP_ME(domelement, __construct, arginfo_dom_element_construct, ZEND_ACC_PUBLIC)
149-
{NULL, NULL, NULL}
149+
PHP_FE_END
150150
};
151151
/* }}} */
152152

ext/dom/entity.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*/
3737

3838
const zend_function_entry php_dom_entity_class_functions[] = {
39-
{NULL, NULL, NULL}
39+
PHP_FE_END
4040
};
4141

4242
/* {{{ publicId string

ext/dom/entityreference.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ZEND_END_ARG_INFO();
4242

4343
const zend_function_entry php_dom_entityreference_class_functions[] = {
4444
PHP_ME(domentityreference, __construct, arginfo_dom_entityreference_construct, ZEND_ACC_PUBLIC)
45-
{NULL, NULL, NULL}
45+
PHP_FE_END
4646
};
4747

4848
/* {{{ proto void DOMEntityReference::__construct(string name); */

ext/dom/namednodemap.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const zend_function_entry php_dom_namednodemap_class_functions[] = { /* {{{ */
7474
PHP_FALIAS(getNamedItemNS, dom_namednodemap_get_named_item_ns, arginfo_dom_namednodemap_get_named_item_ns)
7575
PHP_FALIAS(setNamedItemNS, dom_namednodemap_set_named_item_ns, arginfo_dom_namednodemap_set_named_item_ns)
7676
PHP_FALIAS(removeNamedItemNS, dom_namednodemap_remove_named_item_ns, arginfo_dom_namednodemap_remove_named_item_ns)
77-
{NULL, NULL, NULL}
77+
PHP_FE_END
7878
};
7979
/* }}} */
8080

ext/dom/namelist.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ZEND_END_ARG_INFO();
4747
const zend_function_entry php_dom_namelist_class_functions[] = {
4848
PHP_FALIAS(getName, dom_namelist_get_name, arginfo_dom_namelist_get_name)
4949
PHP_FALIAS(getNamespaceURI, dom_namelist_get_namespace_uri, arginfo_dom_namelist_get_namespace_uri)
50-
{NULL, NULL, NULL}
50+
PHP_FE_END
5151
};
5252

5353
/* {{{ length int

ext/dom/node.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const zend_function_entry php_dom_node_class_functions[] = { /* {{{ */
155155
PHP_ME(domnode, getLineNo, arginfo_dom_node_getLineNo, ZEND_ACC_PUBLIC)
156156
PHP_ME(domnode, C14N, arginfo_dom_node_C14N, ZEND_ACC_PUBLIC)
157157
PHP_ME(domnode, C14NFile, arginfo_dom_node_C14NFile, ZEND_ACC_PUBLIC)
158-
{NULL, NULL, NULL}
158+
PHP_FE_END
159159
};
160160
/* }}} */
161161

ext/dom/nodelist.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ZEND_END_ARG_INFO();
4343

4444
const zend_function_entry php_dom_nodelist_class_functions[] = {
4545
PHP_FALIAS(item, dom_nodelist_item, arginfo_dom_nodelist_item)
46-
{NULL, NULL, NULL}
46+
PHP_FE_END
4747
};
4848

4949
/* {{{ length int

ext/dom/notation.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636

3737
const zend_function_entry php_dom_notation_class_functions[] = {
38-
{NULL, NULL, NULL}
38+
PHP_FE_END
3939
};
4040

4141
/* {{{ attribute protos, not implemented yet */

ext/dom/php_dom.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ ZEND_END_ARG_INFO()
543543

544544
static const zend_function_entry dom_functions[] = {
545545
PHP_FE(dom_import_simplexml, arginfo_dom_import_simplexml)
546-
{NULL, NULL, NULL}
546+
PHP_FE_END
547547
};
548548

549549
static zend_object_handlers* dom_get_obj_handlers(TSRMLS_D) {

ext/dom/processinginstruction.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ZEND_END_ARG_INFO();
4444

4545
const zend_function_entry php_dom_processinginstruction_class_functions[] = {
4646
PHP_ME(domprocessinginstruction, __construct, arginfo_dom_processinginstruction_construct, ZEND_ACC_PUBLIC)
47-
{NULL, NULL, NULL}
47+
PHP_FE_END
4848
};
4949

5050
/* {{{ proto void DOMProcessingInstruction::__construct(string name, [string value]); */

ext/dom/string_extend.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ZEND_END_ARG_INFO();
4747
const zend_function_entry php_dom_string_extend_class_functions[] = {
4848
PHP_FALIAS(findOffset16, dom_string_extend_find_offset16, arginfo_dom_string_extend_find_offset16)
4949
PHP_FALIAS(findOffset32, dom_string_extend_find_offset32, arginfo_dom_string_extend_find_offset32)
50-
{NULL, NULL, NULL}
50+
PHP_FE_END
5151
};
5252

5353
/* {{{ attribute protos, not implemented yet */

ext/dom/text.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const zend_function_entry php_dom_text_class_functions[] = {
5858
PHP_FALIAS(isElementContentWhitespace, dom_text_is_whitespace_in_element_content, arginfo_dom_text_is_whitespace_in_element_content)
5959
PHP_FALIAS(replaceWholeText, dom_text_replace_whole_text, arginfo_dom_text_replace_whole_text)
6060
PHP_ME(domtext, __construct, arginfo_dom_text_construct, ZEND_ACC_PUBLIC)
61-
{NULL, NULL, NULL}
61+
PHP_FE_END
6262
};
6363

6464
/* {{{ proto void DOMText::__construct([string value]); */

ext/dom/typeinfo.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*/
3737

3838
const zend_function_entry php_dom_typeinfo_class_functions[] = {
39-
{NULL, NULL, NULL}
39+
PHP_FE_END
4040
};
4141

4242
/* {{{ attribute protos, not implemented yet */

ext/dom/userdatahandler.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
const zend_function_entry php_dom_userdatahandler_class_functions[] = {
3939
PHP_FALIAS(handle, dom_userdatahandler_handle, NULL)
40-
{NULL, NULL, NULL}
40+
PHP_FE_END
4141
};
4242

4343
/* {{{ attribute protos, not implemented yet */

ext/dom/xpath.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const zend_function_entry php_dom_xpath_class_functions[] = {
6868
PHP_FALIAS(query, dom_xpath_query, arginfo_dom_xpath_query)
6969
PHP_FALIAS(evaluate, dom_xpath_evaluate, arginfo_dom_xpath_evaluate)
7070
PHP_FALIAS(registerPhpFunctions, dom_xpath_register_php_functions, arginfo_dom_xpath_register_php_functions)
71-
{NULL, NULL, NULL}
71+
PHP_FE_END
7272
};
7373

7474

ext/enchant/enchant.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ function_entry enchant_functions[] = {
146146
PHP_FE(enchant_dict_get_error, arginfo_enchant_broker_free_dict)
147147
PHP_FE(enchant_dict_describe, arginfo_enchant_broker_free_dict)
148148
PHP_FE(enchant_dict_quick_check, arginfo_enchant_dict_quick_check)
149-
150-
{NULL, NULL, NULL} /* Must be the last line in enchant_functions[] */
149+
PHP_FE_END
151150
};
152151
/* }}} */
153152

ext/ereg/ereg.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const zend_function_entry ereg_functions[] = {
5959
PHP_DEP_FE(split, arginfo_split)
6060
PHP_DEP_FE(spliti, arginfo_split)
6161
PHP_DEP_FE(sql_regcase, arginfo_sql_regcase)
62-
{NULL, NULL, NULL}
62+
PHP_FE_END
6363
};
6464
/* }}} */
6565

0 commit comments

Comments
 (0)