42sh 1.0.0
Create a shell in C
Loading...
Searching...
No Matches
my_char_is_alpha.c File Reference

The file containing the my_char_is_alpha function. More...

#include "my.h"

Functions

int my_char_is_alpha (char c)
 Checks if a char (c) is a letter.
 

Detailed Description

The file containing the my_char_is_alpha function.

Author
Nicolas TORO

Function Documentation

◆ my_char_is_alpha()

int my_char_is_alpha ( char const c)

Checks if a char (c) is a letter.

Parameters
cThe char to check
Returns
int 1 if the char is a letter, 0 otherwise
Author
Nicolas TORO