summaryrefslogtreecommitdiff
path: root/xmake/templates/c/tbox.shared/project/src/_library/interface.c
blob: ab0a826a60356940413bc6048e9484021173c4b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* //////////////////////////////////////////////////////////////////////////////////////
 * includes
 */
#include "interface.h"

/* //////////////////////////////////////////////////////////////////////////////////////
 * implementation
 */
tb_int_t add(tb_int_t a, tb_int_t b) {
    return a + b;
}