|
Libft
Custom implementation of core libc functions with additional utility helpers.
|
#include "libft.h"#include "string_internal.h"#include <errno.h>#include <stdlib.h>#include <unistd.h>
Functions | |
| bool | string_read_until_c (t_string *string, int fd, char c) |
| Reads from a file descriptor until a specific character is found. | |
| bool | string_read_until_n (t_string *string, int fd, size_t n) |
| Reads up to n bytes from a file descriptor into string. | |
| bool | string_read_all (t_string *string, int fd) |
| Reads all available data from a file descriptor into string. | |