Compare commits

...

2 Commits

Author SHA1 Message Date
Aleksei Chubukov
cde0372716 add ft_dict_open 2023-12-03 20:18:10 +04:00
Anahit Sargsyan
88f211326a ft_open 2023-12-03 19:11:58 +04:00

27
ex00/ft_open.c Normal file
View File

@ -0,0 +1,27 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_open.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: asargsya <asargsya@student.42yerevan.am> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/03 19:08:11 by asargsya #+# #+# */
/* Updated: 2023/12/03 20:17:25 by achubuko ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_open.h"
void ft_dict_open(char *path)
{
int fd;
char buf[1024];
int buflen;
fd = open(path, O_RDONLY);
buflen = read(fd, buf, 1024);
while (buflen > 0)
{
write(1, buf, buflen);
}
close(fd);
}