summaryrefslogtreecommitdiff
path: root/xmake/templates/c/tbox.static/project/src/_library/interface.h
blob: b3c3137719c50712be84a785926ce0f1af04a6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef INTERFACE_H
#define INTERFACE_H

/* //////////////////////////////////////////////////////////////////////////////////////
 * includes
 */
#include "tbox/tbox.h"

/* //////////////////////////////////////////////////////////////////////////////////////
 * extern
 */
__tb_extern_c_enter__


/*! calculate add(a, b)
 *
 * @param a     the first argument
 * @param b     the second argument
 *
 * @return      the result
 */
tb_int_t        add(tb_int_t a, tb_int_t b);

/* //////////////////////////////////////////////////////////////////////////////////////
 * extern
 */
__tb_extern_c_leave__

#endif