Index

lognestmonster / 50316cb

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
17901 Feb 2020 21:541a7420fModify testing chain for convenienceJosh Stockin1160G

Blob @ lognestmonster / tests / header_unit_2.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