1
0
Fork 0
mirror of https://github.com/laravel-ls/go-php synced 2026-06-16 03:54:55 +02:00
go-php/runtime.h
2025-11-02 10:47:20 +01:00

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