-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibftprintf.h
More file actions
29 lines (25 loc) · 1.28 KB
/
Copy pathlibftprintf.h
File metadata and controls
29 lines (25 loc) · 1.28 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
27
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libftprintf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mkhoubaz <mkhoubaz@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/02 11:39:36 by mkhoubaz #+# #+# */
/* Updated: 2025/11/11 09:38:37 by mkhoubaz ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFTPRINTF_H
# define LIBFTPRINTF_H
# include <stdlib.h>
# include <unistd.h>
# include <stdarg.h>
int ft_printf(const char *text, ...);
void ft_putnbr_fd(long n, int fd, int *cont);
int ft_putstr_fd(char *s, int fd);
int ft_putchar_fd(char c, int fd);
size_t ft_strlen(const char *s);
int ft_toupper(int c);
void hex(size_t n, int *cont, int f, char text);
void hex_up(unsigned int n, int *cont);
#endif