Libft
Custom implementation of core libc functions with additional utility helpers.
Loading...
Searching...
No Matches
string_split_priv.h
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* string_split_priv.h :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: gastesan <gastesan@student.42.fr> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2026/08/07 19:23:05 by gastesan #+# #+# */
9/* Updated: 2026/08/07 19:23:06 by gastesan ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13#ifndef STRING_SPLIT_PRIV_H
14# define STRING_SPLIT_PRIV_H
15
16# include "libft.h"
17
19 const t_string *src,
20 size_t start,
21 size_t len,
22 t_vector *out);
23bool string_is_sep(
24 const t_string *src,
25 size_t i,
26 const char *sep);
27
28#endif
bool string_is_sep(const t_string *src, size_t i, const char *sep)
Definition 0_helpers.c:39
bool string_add_to_vector(const t_string *src, size_t start, size_t len, t_vector *out)
Definition 0_helpers.c:15
Dynamic string structure with NUL-terminated storage.
Definition libft.h:81
Dynamic array storing contiguous fixed-size items.
Definition libft.h:160