From 2326ed83da161a4bd0f15ad1897a04d8a640c34a Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Wed, 1 Feb 2023 19:28:33 +0100 Subject: Add a test-app to test the library --- main.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 5119573..34c2fc5 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,12 @@ /* See LICENSE file for copyright and license details. */ +#include "log.h" + int main(int argc, char **argv) { + Log *log = log_create(__FILE__); + log_debug(log, "test log "); + return 0; -} \ No newline at end of file +} -- cgit v1.2.3