-
Notifications
You must be signed in to change notification settings - Fork 0
/
character.h
24 lines (20 loc) · 1.07 KB
/
character.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* character.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marvin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/17 05:45:21 by marvin #+# #+# */
/* Updated: 2023/10/16 13:04:25 by marvin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CHARACTER_H
# define CHARACTER_H
# include <stdint.h>
uint8_t is_lower(char c);
uint8_t is_upper(char c);
uint8_t is_letter(char c);
uint8_t is_digit(char c);
uint8_t is_whitespace(char c);
#endif