Remove specification draft
[libside.git] / tests / unit / demo.c
... / ...
CommitLineData
1// SPDX-FileCopyrightText: 2024 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
2//
3// SPDX-License-Identifier: MIT
4
5#include <side/trace.h>
6
7side_static_event(my_provider_event, "myprovider", "myevent", SIDE_LOGLEVEL_DEBUG,
8 side_field_list(side_field_s32("myfield"))
9);
10
11int main()
12{
13 side_event(my_provider_event, side_arg_list(side_arg_s32(42)));
14 return 0;
15}
This page took 0.022354 seconds and 5 git commands to generate.