From eee121636be554cdeef8907bd0d2fac6a23304a6 Mon Sep 17 00:00:00 2001 From: ruki Date: Wed, 2 Jun 2021 22:48:05 +0800 Subject: add localpkg test --- tests/actions/package/localpkg/libfoo/src/interface.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/actions/package/localpkg/libfoo/src/interface.h (limited to 'tests/actions/package/localpkg/libfoo/src/interface.h') diff --git a/tests/actions/package/localpkg/libfoo/src/interface.h b/tests/actions/package/localpkg/libfoo/src/interface.h new file mode 100644 index 000000000..62a39427c --- /dev/null +++ b/tests/actions/package/localpkg/libfoo/src/interface.h @@ -0,0 +1,16 @@ +#ifdef __cplusplus +extern "C" { +#endif + +/*! calculate add(a, b) + * + * @param a the first argument + * @param b the second argument + * + * @return the result + */ +int add(int a, int b); + +#ifdef __cplusplus +} +#endif -- cgit v1.3.1