| 1234567891011121314151617181920 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_isascii.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2015/11/25 12:46:30 by bchanot #+# #+# */
- /* Updated: 2017/04/15 00:33:48 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- int ft_isascii(int c)
- {
- if (c >= 0 && c <= 127)
- return (true);
- return (false);
- }
|