13#ifndef BUFF_INTERNAL_H
14# define BUFF_INTERNAL_H
ssize_t buff_read_n_bytes(t_buff *buff, int fd, size_t n)
Reads up to n bytes from a file descriptor into a buffer.
Definition buff_internal.c:55
size_t buff_get_required_cap(size_t current_cap, size_t target_len)
Calculates the required capacity to accommodate a target length.
Definition buff_internal.c:22
Dynamic buffer structure for efficient string/data manipulation.
Definition libft.h:54