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

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

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