Upload files to "src/namespace"
This commit is contained in:
@@ -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,
|
||||
};
|
||||
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user