Minishell
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mini_printf_helpers.h
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** my.h
4** File description:
5** my.h for library
6*/
7
8#ifndef HEADER_FILE
9 #define HEADER_FILE
10 #include <unistd.h>
11 #include <stddef.h>
12
13void my_putchar(char c);
14int my_put_nbr(int nb);
15int my_putstr(char *str);
16int my_strlen(char *str);
17#endif
void my_putchar(char c)
Definition mini_printf_utils.c:11
int my_putstr(char *str)
int my_strlen(char *str)
Definition my_strlen.c:8
int my_put_nbr(int nb)