34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright © The PHP Group 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 |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Marcus Boerger <helly@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef PHP_SPL_H
|
|
#define PHP_SPL_H
|
|
|
|
#include "php.h"
|
|
|
|
#define PHP_SPL_VERSION PHP_VERSION
|
|
|
|
extern zend_module_entry spl_module_entry;
|
|
#define phpext_spl_ptr &spl_module_entry
|
|
|
|
PHP_MINIT_FUNCTION(spl);
|
|
PHP_MSHUTDOWN_FUNCTION(spl);
|
|
PHP_RINIT_FUNCTION(spl);
|
|
PHP_RSHUTDOWN_FUNCTION(spl);
|
|
PHP_MINFO_FUNCTION(spl);
|
|
|
|
PHPAPI zend_string *php_spl_object_hash(zend_object *obj);
|
|
|
|
#endif /* PHP_SPL_H */
|