tgrekov-fdf
HIVE fdf May 2024
Loading...
Searching...
No Matches
ft_isalnum.c File Reference

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalnum.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/23 13:29:39 by tgrekov #+# #+# */
/* Updated: 2023/11/06 13:36:53 by tgrekov ### ########.fr */
/* */
/* ************************************************************************** */

Definition in file ft_isalnum.c.

#include "libft.h"
Include dependency graph for ft_isalnum.c:

Go to the source code of this file.

Functions

int ft_isalnum (int c)
 Is c an alphanumeric character.
 

Function Documentation

◆ ft_isalnum()

int ft_isalnum ( int  c)

Is c an alphanumeric character.

Parameters
[in]cCharacter to test
Return values
intft_isalpha(c) || ft_isdigit(c)

Definition at line 29 of file ft_isalnum.c.

References ft_isalpha(), and ft_isdigit().

Here is the call graph for this function: