Upload files to "include/stdWullie/namespaces"

This commit is contained in:
2026-08-11 21:10:25 +00:00
parent 06ec88f374
commit c3b39135f6
2 changed files with 39 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
// 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