20 lines
989 B
C
20 lines
989 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* isdigit.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/04 16:19:40 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:41:55 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ISDIGIT_H
|
|
# define ISDIGIT_H
|
|
|
|
# include "me/types.h"
|
|
|
|
bool me_isdigit(char chr);
|
|
|
|
#endif
|