1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2024-12-29 10:48:21 +01:00
antd-lua-plugin/lib/ffi/example/lib.c
2019-05-01 22:06:48 +02:00

7 lines
136 B
C

#include <stdio.h>
void greet(const char* msg, float num, int sint, char c)
{
printf("%s: '%f' '%d' '%c'\n", msg, num, sint, c);
}