-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strinc.c
31 lines (28 loc) · 1.21 KB
/
ft_strinc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_strinc.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/11/09 12:09:11 by davfelix #+# ## ## #+# */
/* Updated: 2018/11/21 16:34:38 by davfelix ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
char *ft_strinc(char *str, int i)
{
unsigned int nb;
nb = 0;
if (i < 0)
return (str);
if ((ft_strisdigit((char *)str) == 1) || i != 0)
{
nb = ft_atoi(str);
nb += i;
if (nb <= 2147483647)
str = (char *)ft_itoa(nb);
}
return (str);
}