12 lines
177 B
C
12 lines
177 B
C
/* testlib.c */
|
|
#include "testlib.h"
|
|
#include <stdio.h>
|
|
|
|
#ifndef MESSAGE
|
|
#define MESSAGE "Hello from testlib!"
|
|
#endif
|
|
|
|
void print_message() {
|
|
printf("%s\n", MESSAGE);
|
|
}
|