/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* operator_start.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kcolin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/17 16:21:03 by kcolin #+# #+# */ /* Updated: 2025/02/18 17:53:13 by jguelen ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" #include /* ** Is the character the start of an operator? */ bool is_operator_start(char c) { if (ft_strchr("<>|&()", c) != NULL) return (true); else return (false); }