/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* b_sqb_str.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include "d_define.h" uint8_t b_sqb_str(uint8_t id, char *argv[]) { if (id == FT_ID_SQB_Z) { if (argv[1][0] != '\0') return (0); else return (1); } return (1); }