-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_utochar.c
18 lines (16 loc) · 975 Bytes
/
ft_utochar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_utochar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lenzo-pe <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/09 12:50:23 by lenzo-pe #+# #+# */
/* Updated: 2021/05/07 17:26:33 by lenzo-pe ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_conv.h"
int ft_utochar(unsigned int n)
{
return ((n % 10) + '0');
}