maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
ft_isalnum.c File Reference
#include "libft.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 (ft_isalpha(c) || ft_isdigit(c));
18}
int ft_isdigit(int c)
Definition ft_isdigit.c:13
int ft_isalpha(int c)
Definition ft_isalpha.c:13

References ft_isalpha(), and ft_isdigit().

Referenced by ev_loop(), and handle_local_vars().

Here is the call graph for this function:
Here is the caller graph for this function: