-
Notifications
You must be signed in to change notification settings - Fork 0
/
stdio_42.h
executable file
·85 lines (71 loc) · 2.89 KB
/
stdio_42.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* stdio_42.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/03 21:39:25 by akharrou #+# #+# */
/* Updated: 2019/05/27 08:59:24 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef STDIO_42_H
# define STDIO_42_H
/*
** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
** Header File(s).
*/
# include <stdio.h>
# include <unistd.h>
# include <string.h>
# include <stdarg.h>
# include <fcntl.h>
/*
** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
** Open Function(s).
*/
int ft_open(char *filename, int oflag);
/*
** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
** Reading Function(s).
*/
int ft_readline(const int fd, char **line);
char *ft_readfile(char *filename);
char *ft_readfiledes(const int filedes);
/*
** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
** Printing Function(s).
*/
int ft_printf(const char *format, ...);
int ft_dprintf(int filedes, const char *format, ...);
int ft_sprintf(char *str, const char *format, ...);
int ft_asprintf(char **ret, const char *format, ...);
int ft_vprintf(const char *format, va_list *args);
int ft_vdprintf(int filedes, const char *format, va_list *args);
int ft_vsprintf(char *str, const char *format, va_list *args);
int ft_vasprintf(char **ret, const char *format, va_list *args);
/*
** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
** Other Printing Function(s).
*/
void ft_putbits(void *data, size_t size);
void ft_putbyte(int c);
void ft_putbyte_fd(int c, int fd);
void ft_putbytes(const char *byte_str);
void ft_putbytes_fd(const char *byte_str, int fd);
void ft_putchar(char c);
void ft_putchar_fd(char c, int fd);
void ft_putstr(char const *s);
void ft_putstr_fd(char const *s, int fd);
void ft_putendl(char const *s);
void ft_putendl_fd(char const *s, int fd);
void ft_putstrtab(char **tab, char sep);
void ft_putstrtab_fd(char **tab, char sep, int fd);
void ft_putnbr(int n);
void ft_putnbr_fd(int n, int fd);
void ft_putnbr_base(int nbr, char *base);
void ft_putnbr_base_fd(int nbr, char *base, int fd);
/*
** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **
*/
#endif