aboutsummaryrefslogtreecommitdiff
path: root/printer.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-10-25 04:42:08 +0200
committerCharles <sircharlesaze@gmail.com>2019-10-25 04:42:08 +0200
commitfeb71e200972bb78fe86130629ef040ef80811a7 (patch)
tree24b84b3f4937ab4eb930e1ad851494d8d49a9775 /printer.c
parent1b4df01bfa793fe91a58192a4b79917909bf1614 (diff)
downloadft_printf-feb71e200972bb78fe86130629ef040ef80811a7.tar.gz
ft_printf-feb71e200972bb78fe86130629ef040ef80811a7.tar.bz2
ft_printf-feb71e200972bb78fe86130629ef040ef80811a7.zip
WIP: Added libft submodule, make ft_printf lib
Diffstat (limited to 'printer.c')
-rw-r--r--printer.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/printer.c b/printer.c
index 22d0dcd..cacfbd5 100644
--- a/printer.c
+++ b/printer.c
@@ -7,12 +7,6 @@
#define ITOA_HEX_LOWER(x) (ft_itoa_base(x, "0123456789abcdef"))
#define ITOA_HEX_UPPER(x) (ft_itoa_base(x, "0123456789ABCDEF"))
-void ft_putstr(char *str)
-{
- while (*str)
- write(STDOUT_FILENO, str++, 1);
-}
-
char *convert_to_str(t_pformat *pformat, va_list ap)
{
char *str;