mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
15 lines
313 B
C
15 lines
313 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdTask__H
|
|
#define __PikaStdTask__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdTask(Args *args);
|
|
|
|
Arg* PikaStdTask_Task(PikaObj *self);
|
|
|
|
#endif
|