diff options
Diffstat (limited to 'tests/cyn/log.c')
-rw-r--r-- | tests/cyn/log.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/cyn/log.c b/tests/cyn/log.c new file mode 100644 index 0000000..a6b0643 --- /dev/null +++ b/tests/cyn/log.c @@ -0,0 +1,5 @@ +#include <cynic.h> + +int main(void) { + cyn_log_write(UN_LOG_INFO, UN_STR("Hello %u %d %s!"), (u64)100, (s64)-400, UN_STR("World")); +} |