20 lines
989 B
C
20 lines
989 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* isspace.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/06 14:26:25 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:45:02 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ISSPACE_H
|
|
# define ISSPACE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
bool me_isspace(char chr);
|
|
|
|
#endif
|