comp20003-project03/include/libmy.h

14 lines
233 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>
#ifndef LIBMY_H
#define LIBMY_H
void my_putchar(char c);
int my_putstr(char const *str);
#endif