aboutsummaryrefslogtreecommitdiff
path: root/tests/cyn/log.c
blob: 067d5571ffd5455e1f88b556c773149d5de2b596 (plain)
1
2
3
4
5
6
7
#include <cynic.h>

int main(void) {
    un_alloc_temp_init(UN_KB(4));

    cyn_log_write(CYN_LOG_INFO, UN_STR("Hello %u %d %s!"), (u64)100, (s64)-400, UN_STR("World"));
}