1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-08-03 23:16:27 +02:00

25 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* charobj.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: axdubois <axdubois@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/02 11:01:47 by axdubois #+# #+# */
/* Updated: 2023/08/02 19:10:38 by axdubois ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CHAROBJ_H
# define CHAROBJ_H
typedef struct s_charobj
{
char o;
char x;
char n;
} t_charobj;
t_charobj ft_get_charobj(char *ftline,int sizeline);
#endif