-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
26 lines (22 loc) · 1.23 KB
/
ft_printf.h
File metadata and controls
26 lines (22 loc) · 1.23 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cari <cari@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/09 20:35:00 by cari #+# #+# */
/* Updated: 2025/01/06 04:11:13 by cari ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
# include <stdarg.h>
# include <stdlib.h>
# include <unistd.h>
int ft_printf(const char *format, ...);
void ft_format_control(char *format, va_list arg, int *len);
void print_base(unsigned long n, char *base, int *len, char *format);
void print_str(char *str, int *len);
unsigned long ft_strlen(const char *s);
#endif