24 lines
1.1 KiB
C
24 lines
1.1 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 |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Antony Dovgal <tony@daylessday.org> |
|
|
| Etienne Kneuss <colder@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef SPL_FIXEDARRAY_H
|
|
#define SPL_FIXEDARRAY_H
|
|
|
|
extern PHPAPI zend_class_entry *spl_ce_SplFixedArray;
|
|
|
|
PHP_MINIT_FUNCTION(spl_fixedarray);
|
|
|
|
#endif /* SPL_FIXEDARRAY_H */
|