33 lines
1.5 KiB
C
33 lines
1.5 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 |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Andi Gutmans <andi@php.net> |
|
|
| Zeev Suraski <zeev@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef ZEND_BUILTIN_FUNCTIONS_H
|
|
#define ZEND_BUILTIN_FUNCTIONS_H
|
|
|
|
#include "zend_types.h"
|
|
|
|
typedef struct _zval_struct zval;
|
|
|
|
zend_result zend_startup_builtin_functions(void);
|
|
|
|
BEGIN_EXTERN_C()
|
|
ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit);
|
|
END_EXTERN_C()
|
|
|
|
#endif /* ZEND_BUILTIN_FUNCTIONS_H */
|