summaryrefslogtreecommitdiff
path: root/demo/embedding_test.c
blob: 2f050ee952084c3de35e1e9260a6447a7bc3c0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Link this program with libembedding_test.so.
   E.g. with gcc:

      gcc -o embedding_test embedding_test.c _embedding_cffi.so
*/

#include <stdio.h>

extern int add(int x, int y);


int main(void)
{
    int res = add(40, 2);
    printf("result: %d\n", res);
    res = add(100, -5);
    printf("result: %d\n", res);
    return 0;
}