Files
libstdwullie/src/namespace/printingNamespace.c
T
2026-08-19 00:38:08 +01:00

19 lines
475 B
C

// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
#include "stdWullie/namespaces/print.h"
void printText(char *string);
void printReturn(char *string);
void ColourPrint(char *string, char *colour);
void BackgroundPrint(char *string, char *Bcolour);
const PrintNameSpace print = {
.text = printText,
.nl = printReturn,
.colour = ColourPrint,
.background = BackgroundPrint,
};