Files
M5Stack_Linux_Libs/components/component1/include/lib1.h
T
dianjixz 49df8c5def [init]
2024-04-10 12:21:46 +08:00

15 lines
204 B
C

#ifndef __LIB1_H_
#define __LIB1_H_
#if defined(__cplusplus)
extern "C" {
#endif
int add(int a,int b);
int sub(int a,int b);
int div(int a,int b);
void say_hi();
#if defined(__cplusplus)
}
#endif
#endif