xtest/examples/source.h

14 lines
196 B
C
Raw Normal View History

2022-01-02 15:00:54 +01:00
#ifndef XTEST_SOURCE_H
#define XTEST_SOURCE_H
2022-01-11 20:01:15 +01:00
int ret_1(void);
2022-01-02 15:00:54 +01:00
double div(double a, double b);
int add(int a, int b);
2022-01-11 20:01:15 +01:00
int str_equals(const char *s1, const char *s2);
2022-01-02 15:00:54 +01:00
#endif //XTEST_SOURCE_H