-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf.h
More file actions
20 lines (17 loc) · 1.08 KB
/
ft_printf.h
File metadata and controls
20 lines (17 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gcoralie <gcoralie@student.21-school.ru +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/17 22:54:38 by gcoralie #+# #+# */
/* Updated: 2022/01/14 16:49:21 by gcoralie ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_PRINTF_H
# define FT_PRINTF_H
int ft_printf(const char *fs, ...);
char *gc_parse_format_string(char *fs, char *conv, int *symbols_printed);
int gc_putnstr_fd(char *s, int fd, int len, int count);
#endif