summaryrefslogtreecommitdiff
path: root/core/detect/tbox.c
blob: dfec3eb1e6df3f1e925b47835fb8a5750ab7354e (plain)
1
2
3
4
5
6
7
8
9
10
#include <tbox/tbox.h>

int main()
{
    if (tb_init(tb_null, tb_null))
    {
        tb_trace_i("hello tbox!");
        tb_exit();
    }
}