diff options
Diffstat (limited to 'tests/static_library_c/src/interface.h')
| -rwxr-xr-x | tests/static_library_c/src/interface.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/static_library_c/src/interface.h b/tests/static_library_c/src/interface.h new file mode 100755 index 000000000..10ec0f856 --- /dev/null +++ b/tests/static_library_c/src/interface.h @@ -0,0 +1,8 @@ +/*! calculate add(a, b) + * + * @param a the first argument + * @param b the second argument + * + * @return the result + */ +int add(int a, int b); |
