From 472b8f20c0f74d20dbb434abce10ee86054b9975 Mon Sep 17 00:00:00 2001 From: yctct Date: Thu, 5 Feb 2026 12:18:33 +0100 Subject: Remove tests --- ft_putchar_fd.c | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'ft_putchar_fd.c') diff --git a/ft_putchar_fd.c b/ft_putchar_fd.c index eb71264..8d81c51 100644 --- a/ft_putchar_fd.c +++ b/ft_putchar_fd.c @@ -21,25 +21,3 @@ void ft_putchar_fd(char c, int fd) { write(fd, &c, 1); } -/* -#include -#include -#include - -int main(void) -{ - int fd; - - if ((fd = open("test.txt", O_RDWR)) == -1) - { - printf("File Open Failed\n"); - exit(0); - } - else - { - printf("File Opened Successfully\n"); - printf("File Descriptor: %d\n", fd); - } - ft_putchar_fd('a', fd); -} -*/ -- cgit v1.2.3