mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-12 03:27:07 +08:00
11 lines
150 B
C
11 lines
150 B
C
#ifndef _HEAD_H
|
|
#define _HEAD_H
|
|
|
|
int add(int a, int b);
|
|
|
|
int subtract(int a, int b);
|
|
|
|
double divide(int a, int b);
|
|
|
|
int multiply(int a, int b);
|
|
#endif |