comp20003-project03/lib/my_putchar.c

15 lines
176 B
C
Raw Normal View History

2021-10-11 12:24:40 +11:00
/*
** EPITECH PROJECT, 2017
** my_putchar
** File description:
** put char
*/
#include "../include/libmy.h"
#include <unistd.h>
void my_putchar(char c)
{
write(1, &c, 1);
}