mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
ee90f9a60f
update cmsis-pack to v1.10 update v1.10.0 to cmsis-pack update makepdsc
19 lines
572 B
C
19 lines
572 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __PikaStdData_List__H
|
|
#define __PikaStdData_List__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_PikaStdData_List(Args *args);
|
|
|
|
void PikaStdData_List___init__(PikaObj *self);
|
|
void PikaStdData_List___setitem__(PikaObj *self, Arg* __key, Arg* __val);
|
|
char* PikaStdData_List___str__(PikaObj *self);
|
|
void PikaStdData_List_append(PikaObj *self, Arg* arg);
|
|
void PikaStdData_List_set(PikaObj *self, int i, Arg* arg);
|
|
|
|
#endif
|