mirror of
https://github.com/laravel-ls/go-php
synced 2026-06-16 03:54:55 +02:00
10 lines
191 B
C
10 lines
191 B
C
#ifndef _GOPHP_CAPI_RUNTIME_H
|
|
#define _GOPHP_CAPI_RUNTIME_H
|
|
|
|
#include <Zend/zend_compile.h>
|
|
|
|
extern zend_op_array* compile(char *code);
|
|
|
|
void exec(zend_op_array *code, zval* retval);
|
|
|
|
#endif
|