mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
16 lines
408 B
C
16 lines
408 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdDevice_Time__H
|
|
#define __PikaStdDevice_Time__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdDevice_Time(Args *args);
|
|
|
|
void PikaStdDevice_Time_sleep_ms(PikaObj *self, int ms);
|
|
void PikaStdDevice_Time_sleep_s(PikaObj *self, int s);
|
|
|
|
#endif
|