Example #1
0
char	*ft_htob(char *h)
{
	int		i;
	char	*k;

	if (h == NULL)
		return (NULL);
	i = ft_htoi(h);
	k = ft_itob(i);
	return (k);
}
Example #2
0
long	ft_htob(char *hex)
{
	return (ft_itob(ft_htoi(hex)));
}