Upload files to "src/namespace"

This commit is contained in:
2026-08-11 21:13:24 +00:00
parent d90f046561
commit 284bc1b70e
2 changed files with 33 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
#include "stdWullie/namespaces/convert.h"
int intParser(char *rawInt);
void upper(char string[]);
void lower(char string[]);
const ConversionNameSpace convert = {
.toInt = intParser,
.toLower = lower,
.toUpper = upper,
};
+18
View File
@@ -0,0 +1,18 @@
// 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,
};