diff options
author | 2023-02-01 19:28:33 +0100 | |
---|---|---|
committer | 2023-02-01 19:28:33 +0100 | |
commit | 2326ed83da161a4bd0f15ad1897a04d8a640c34a (patch) | |
tree | 16a86b209268b1ff977b58f968b1b7f5a77652aa | |
parent | 730c6fe66ce122e2ce49a57df0cece4504e8471f (diff) | |
download | log-2326ed83da161a4bd0f15ad1897a04d8a640c34a.tar.gz log-2326ed83da161a4bd0f15ad1897a04d8a640c34a.zip |
Add a test-app to test the library
-rw-r--r-- | main.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 +} |