some refactoring

This commit is contained in:
2022-05-08 02:11:57 +02:00
parent 6984404979
commit ca501272d8
7 changed files with 18 additions and 9 deletions

12
example/test/testFmt.cpp Normal file
View File

@ -0,0 +1,12 @@
#include "testFmt.h"
void fmtTests() {
sif::fdebug_t("Hallo\n");
sif::fdebug("Hallo\n");
sif::finfo_t("Hallo\n");
sif::finfo("Hallo\n");
sif::fwarning("Hello\n");
sif::fwarning_t("Hello\n");
sif::ferror("Hello\n");
sif::ferror_t("Hello\n");
}