feture match with master

This commit is contained in:
2026-09-11 03:50:43 +01:00
parent bcaf026ef5
commit 79bc676f49
16 changed files with 293 additions and 11 deletions
+6 -1
View File
@@ -5,6 +5,8 @@
#ifndef TYPECONVERSION_H
#define TYPECONVERSION_H
#include "stdWullie/definitions/int.h"
typedef struct{
// string manipulation
@@ -12,7 +14,10 @@ typedef struct{
void (*toLower)(char string[]);
// the numbers mason, what do they mean
const char *(*ItoStr)(int number);
const char *(*I32toStr)(int number);
const char *(*I64toStr)(int64_t number);
const char *(*U32toStr)(uint32_t number);
const char *(*U64toStr)(uint64_t number);
const char *(*FtoStr)(float number);
int (*toInt)(char *rawInt);