1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2025-01-01 03:58:22 +01:00
antd-lua-plugin/lib/ffi/example/lib.c

7 lines
136 B
C
Raw Normal View History

2019-04-30 20:09:07 +02:00
#include <stdio.h>
2019-05-01 22:06:48 +02:00
void greet(const char* msg, float num, int sint, char c)
2019-04-30 20:09:07 +02:00
{
2019-05-01 22:06:48 +02:00
printf("%s: '%f' '%d' '%c'\n", msg, num, sint, c);
2019-04-30 20:09:07 +02:00
}