-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmylibc.h
26 lines (21 loc) · 1.12 KB
/
mylibc.h
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* mylibc.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kgriset <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/16 11:41:11 by kgriset #+# #+# */
/* Updated: 2024/11/21 20:09:28 by kgriset ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MYLIBC_H
# define MYLIBC_H
// mylibc
# include "mylibc/mylibc_local.h"
// ft_printf project
int ft_printf(const char *format, ...);
int ft_printf_fd(int fd, const char *format, ...);
// get_next_line project
char *get_next_line(int fd);
#endif