-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibftprintf.h
More file actions
23 lines (19 loc) · 1.15 KB
/
libftprintf.h
File metadata and controls
23 lines (19 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libftprintf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hbooke <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/10/29 00:59:59 by hbooke #+# #+# */
/* Updated: 2020/10/29 01:00:48 by makar ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFTPRINTF_H
# define LIBFTPRINTF_H
# include <stddef.h>
int ft_printf(const char *format, ...);
int ft_dprintf(int fd, const char *format, ...);
int ft_sprintf(char *buf, const char *format, ...);
int ft_snprintf(char *buf, size_t size, const char *format, ...);
#endif