cmake/cmake_lib/func/func.h

15 lines
139 B
C

#ifndef FUNC_H
#define FUNC_H
#ifdef __cplusplus
extern "C"
{
#endif
extern void func(int data);
#ifdef __cplusplus
}
#endif
#endif