mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
15 lines
354 B
C
15 lines
354 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdData_Utils__H
|
|
#define __PikaStdData_Utils__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdData_Utils(Args *args);
|
|
|
|
Arg* PikaStdData_Utils_int_to_bytes(PikaObj *self, int val);
|
|
|
|
#endif
|