blob: 56b3ed8b9d20bae955a5d3397adb700a83194eff (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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 != '\0')
str++;
while (*str != '-' && *str != '\0')
str--;
len = ft_strlchr(str, ' ');
nnstr = ft_substr(str, 0, len);
nstr = ft_strjoin(nnstr, str + len + 1);
ft_memdel((void**)&nnstr);
return (nstr);
}
|