blob: 2f3c6e799827150a71146476b35b0730a8473d2a (
plain)
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
32
33
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_flag_to_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <stddef.h>
#include <stdlib.h>
char
*ft_printf_flag_to_atoi(char *str)
{
char *nstr;
char *nnstr;
int len;
while (*str != '.' && *str)
str++;
while (*str != '-' && *str)
str--;
len = ft_strlchr(str, ' ');
nnstr = ft_substr(str, 0, len);
nstr = ft_strjoin(nnstr, str + len + 1);
ft_memdel((void**)&nnstr);
return (nstr);
}
|