24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Zend Engine |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright © Zend Technologies Ltd., a subsidiary company of |
|
|
| Perforce Software, Inc., and Contributors. |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to the Modified BSD License that is |
|
|
| bundled with this package in the file LICENSE, and is available |
|
|
| through the World Wide Web at <https://www.php.net/license/>. |
|
|
| |
|
|
| SPDX-License-Identifier: BSD-3-Clause |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "zend_frameless_function.h"
|
|
|
|
size_t zend_flf_count = 0;
|
|
size_t zend_flf_capacity = 0;
|
|
ZEND_API void **zend_flf_handlers = NULL;
|
|
zend_function **zend_flf_functions = NULL;
|