A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)
| {#} | Time | Hash | Subject | Author | # | (+) | (-) | GPG? |
|---|---|---|---|---|---|---|---|---|
| 169 | 03 Jan 2020 21:44 | c564ba1 | Update MIT License notices | Josh Stockin | 1 | 2 | 1 | N |
| 1 | // lognestmonster Copyright (c) 2020 Joshua 'joshuas3' Stockin |
| 2 | // <https://joshstock.in> |
| 3 | // <https://github.com/JoshuaS3/lognestmonster> |
| 4 | // This software is licensed under the MIT License. |
| 5 | // |
| 6 | // main_test.c |
| 7 | // Second part of a two-piece lognestmonster unit test source |
| 8 | |
| 9 | #include <stdio.h> |
| 10 | #include "lognestmonster.h" |
| 11 | |
| 12 | char * queueName; |
| 13 | void test(void) { |
| 14 | printf("retrieving %s from global queue\n", queueName); |
| 15 | lnmQueueByName(queueName); |
| 16 | } |
| 17 |