blob: f75a7f728f5a2ba07dd72b37b6a1a5646187c288 (
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
34
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_printf_flag_to_atoi.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/12/31 14:40:21 by rbousset #+# ## ## #+# */
/* Updated: 2019/12/31 14:40:22 by rbousset ### #+. /#+ ###.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(nnstr);
return (nstr);
}
|