comp20003-project03/lib/my_putchar.c

14 lines
176 B
C
Raw Permalink 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>
2021-10-21 20:02:57 +11:00
void my_putchar(char c) {
2021-10-11 12:24:40 +11:00
write(1, &c, 1);
}