19 lines
475 B
C
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,
|
|
};
|
|
|