Files

15 lines
204 B
C
Raw Permalink Normal View History

2024-04-10 12:21:46 +08:00
#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