22 lines
1 KiB
C
22 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str_utils.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/09 17:13:15 by mcolonna #+# #+# */
|
|
/* Updated: 2024/02/09 17:13:39 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR_UTILS_H
|
|
# define STR_UTILS_H
|
|
|
|
typedef struct s_two_strings
|
|
{
|
|
t_const_string str;
|
|
t_const_string charset;
|
|
} t_two_strings;
|
|
|
|
#endif
|