13#ifndef STRING_INTERNAL_H
14# define STRING_INTERNAL_H
ssize_t string_read_n_bytes(t_string *string, int fd, size_t n)
Reads up to n bytes from a file descriptor into a string.
Definition string_internal.c:59
size_t string_get_required_cap(size_t current_cap, size_t target_cap)
Calculates the required capacity to accommodate a target cap.
Definition string_internal.c:22
Dynamic string structure with NUL-terminated storage.
Definition libft.h:81