This commit is contained in:
Jeremy FLEURY
2019-07-17 11:22:24 +02:00
commit 748d10f4f3
174 changed files with 8953 additions and 0 deletions

23
libft/printf/pow10.c Normal file
View File

@@ -0,0 +1,23 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* pow10.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: igarbuz <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/01/29 19:58:41 by igarbuz #+# #+# */
/* Updated: 2019/01/29 19:58:45 by igarbuz ### ########.fr */
/* */
/* ************************************************************************** */
unsigned int g_pow10[] = {
1,
10,
100,
1000,
10000,
100000,
1000000,
10000000,
100000000,
};