/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* non_blocking_mode.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/08/02 17:14:46 by vvobis #+# #+# */ /* Updated: 2024/08/02 17:16:33 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ #include "../minishell.h" void blocking_mode_toggle(int flag) { if (ioctl(0, FIONBIO, &flag) == -1) { perror("ioctl"); exit(1); } }