tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_isalpha.c File Reference

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/23 12:47:27 by tgrekov #+# #+# */
/* Updated: 2023/11/04 22:24:44 by tgrekov ### ########.fr */
/* */
/* ************************************************************************** */

Definition in file ft_isalpha.c.

Go to the source code of this file.

Functions

int ft_isalpha (int c)
 Is c an alphabetical character.
 

Function Documentation

◆ ft_isalpha()

int ft_isalpha ( int  c)

Is c an alphabetical character.

Parameters
[in]cCharacter to test
Return values
int1 if c is within either of the ranges A - Z or a - z, otherwise 0

Definition at line 27 of file ft_isalpha.c.

Here is the caller graph for this function: