12 lines
177 B
C
Raw Normal View History

2025-02-19 16:17:08 +01:00
/* testlib.c */
#include "testlib.h"
#include <stdio.h>
#ifndef MESSAGE
#define MESSAGE "Hello from testlib!"
#endif
void print_message() {
printf("%s\n", MESSAGE);
}