// this code is licenced under Wrathmark licence // © 2026 wullie wulliestudio.com // please see attached licence for full usage and rights #ifndef PRINT_H #define PRINT_H typedef struct{ void (*text)(char *string); void (*nl)(char *string); void (*colour)(char *string, char *colour); void (*background)(char *string, char *Bcolour); }PrintNameSpace; extern const PrintNameSpace print; #endif