sbn.cassigment/tests/util.c

14 lines
164 B
C
Raw Normal View History

#include "stdio.h"
void print(char *text) {
printf(text);
}
void println(char *text) {
newline();
print(text);
}
void newline() {
printf("\n");
}