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

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