| 1234567891011121314151617181920 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_isalpha.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@students.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2015/11/27 14:54:35 by bchanot #+# #+# */
- /* Updated: 2017/04/15 00:33:40 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include "libft.h"
- int ft_isalpha(int c)
- {
- if ((c >= 65 && c <= 90) || (c >= 97 && c <= 122))
- return (true);
- return (false);
- }
|