A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)
{#} | Time | Hash | Subject | Author | # | (+) | (-) | GPG? |
---|---|---|---|---|---|---|---|---|
167 | 29 Dec 2019 19:58 | 955bc8d | Change license from GPLv3 to MIT | Josh Stockin | 1 | 5 | 20 | N |
1 | // lognestmonster Copyright (c) 2020 Joshua 'joshuas3' Stockin (copyrighted under the MIT License) |
2 | // <https://joshstock.in> |
3 | // <https://github.com/JoshuaS3/lognestmonster> |
4 | // |
5 | // main_test.c |
6 | // Second part of a two-piece lognestmonster unit test source |
7 | |
8 | #include <stdio.h> |
9 | #include "lognestmonster.h" |
10 | |
11 | char * queueName; |
12 | void test(void) { |
13 | printf("retrieving %s from global queue\n", queueName); |
14 | lnmQueueByName(queueName); |
15 | } |
16 |