Index

lognestmonster / ed03c50

A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
16903 Jan 2020 21:44c564ba1Update MIT License noticesJosh Stockin121N

Blob @ lognestmonster / tests / main_test.c

text/plain441 bytesdownload raw
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
12char * queueName;
13void test(void) {
14 printf("retrieving %s from global queue\n", queueName);
15 lnmQueueByName(queueName);
16}
17