mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-23 13:18:59 +00:00
15 lines
356 B
C
15 lines
356 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdLib__H
|
|
#define __PikaStdLib__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdLib(Args *args);
|
|
|
|
Arg * PikaStdLib_MemChecker(PikaObj *self);
|
|
Arg * PikaStdLib_SysObj(PikaObj *self);
|
|
|
|
#endif
|