-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibftprintf.h
More file actions
30 lines (27 loc) · 1.35 KB
/
libftprintf.h
File metadata and controls
30 lines (27 loc) · 1.35 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libftprintf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: halhashm <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/16 15:37:37 by halhashm #+# #+# */
/* Updated: 2021/11/17 12:36:28 by halhashm ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFTPRINTF_H
# define LIBFTPRINTF_H
# include <unistd.h>
# include <stdio.h>
# include <stdarg.h>
# include <string.h>
# include <stdlib.h>
void ft_putchar(char c, int *i);
void ft_putnbr_base(int nbr, char *base, int *len);
void ft_putnbr(int n, int *i);
void ft_putstr(char *s, int *i);
size_t ft_strlen(const char *c);
void ft_ullitoa_base(unsigned long long int n, char *base, int *i);
int ft_printf(const char *c, ...);
int ft_printf_dt(const char *c, va_list arg);
#endif