cmake/cmake_lib/func/func.c

7 lines
99 B
C

#include "func.h"
#include <stdio.h>
void func(int data)
{
printf("the data is %d\n", data);
}