This commit is contained in:
hugogogo
2022-07-31 12:30:35 +02:00
parent 122032a140
commit 2a69e14db2
9 changed files with 21 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
# include <sstream>
#include <string.h>
static int eval_is_negative(int *n)
@@ -28,6 +29,14 @@ static int eval_digit_nbr(int n)
char *ft_itoa(int n)
{
// std::stringstream strs;
// std::string s;
//
// strs << n;
// s = strs.str();
// return ((char*)(s.c_str()));
int i;
char *str;
int is_negative;