mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-01-10 00:50:15 +02:00
7d9b7b803c
Adding blinker demo: lua_blink_led
11 lines
215 B
C
11 lines
215 B
C
typedef struct tagT{
|
|
int a ;
|
|
int b ;
|
|
}Point;
|
|
|
|
void lib_a_f_1(void);
|
|
int lib_a_f_2(int a, int b);
|
|
int lib_a_f_3(const char *s);
|
|
int lib_a_f_4(Point *in_t);
|
|
int lib_a_f_5(Point *out_t);
|