initial commit

This commit is contained in:
Lauchmelder 2022-01-20 12:34:33 +01:00
commit 1e778fc163
12 changed files with 431 additions and 0 deletions

6
include/convert.h Normal file
View file

@ -0,0 +1,6 @@
#pragma once
#include "stdint.h"
int stoi(const char* string);
char* itoa(int number, char* string);