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