comp20003-project03/include/libmy.h

15 lines
234 B
C
Raw Normal View History

2021-10-11 12:24:40 +11:00
/*
** EPITECH PROJECT, 2017
** libmy.h
** File description:
** Contain all the prototypes of function in libmy
*/
#include <stdarg.h>
2021-10-21 20:02:57 +11:00
2021-10-11 12:24:40 +11:00
#ifndef LIBMY_H
#define LIBMY_H
void my_putchar(char c);
int my_putstr(char const *str);
#endif