itoa is pog

This commit is contained in:
LinlyBoi
2023-08-22 22:11:10 +03:00
parent 25ddd63fc9
commit 160a8f5813
2 changed files with 113 additions and 0 deletions

13
tests/itoa.c Normal file
View File

@@ -0,0 +1,13 @@
#include "../main.h"
#define shit 0
/**
* main - check if this works
*/
int main(void)
{
char *str;
str = _itoa(10, 2);
_printf("%s", str);
return (shit);
}