����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.188.99.196 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/usr/include/orc-0.4/orc/ |
Upload File : |
#ifndef _ORC_BYTECODE_H_ #define _ORC_BYTECODE_H_ #include <orc/orcutils.h> #include <orc/orcbytecodes.h> ORC_BEGIN_DECLS typedef struct _OrcBytecode OrcBytecode; struct _OrcBytecode { /*< private >*/ orc_uint8 *bytecode; int length; int alloc_len; }; #ifdef ORC_ENABLE_UNSTABLE_API OrcBytecode * orc_bytecode_new (void); void orc_bytecode_free (OrcBytecode *bytecode); OrcBytecode * orc_bytecode_from_program (OrcProgram *p); int orc_bytecode_parse_function (OrcProgram *program, const orc_uint8 *bytecode); #endif ORC_END_DECLS #endif