sbn.cassigment/tests/util.c
Sambo Chea f78b5369d6 Add menu functions
Updated to test util
2020-08-01 20:03:17 +07:00

14 lines
164 B
C

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