minishell
ft_isalnum.c File Reference
#include "ft_is.h"
Include dependency graph for ft_isalnum.c:

Go to the source code of this file.

Functions

int ft_isalnum (int c)
 

Function Documentation

◆ ft_isalnum()

int ft_isalnum ( int  c)

Definition at line 15 of file ft_isalnum.c.

16 {
17  return (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z')
18  || ('0' <= c && c <= '9'));
19 }
Here is the caller graph for this function: