sbn.cassigment/tests/util.c

17 lines
164 B
C
Raw Permalink Normal View History

#include "stdio.h"
2020-08-01 22:10:24 +07:00
void print(char *text)
{
printf(text);
}
2020-08-01 22:10:24 +07:00
void println(char *text)
{
newline();
print(text);
}
2020-08-01 22:10:24 +07:00
void newline()
{
printf("\n");
}