You've already forked M5Stack_Linux_Libs
mirror of
https://github.com/m5stack/M5Stack_Linux_Libs.git
synced 2026-05-20 11:01:38 -07:00
15 lines
204 B
C
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 |