mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
14 lines
288 B
C
14 lines
288 B
C
|
/* ******************************** */
|
||
|
/* Warning! Don't modify this file! */
|
||
|
/* ******************************** */
|
||
|
#ifndef __pikaScript__H
|
||
|
#define __pikaScript__H
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "PikaObj.h"
|
||
|
#include "PikaMain.h"
|
||
|
|
||
|
PikaObj * pikaScriptInit(void);
|
||
|
|
||
|
#endif
|