|
Libft
Custom implementation of core libc functions with additional utility helpers.
|
#include "buff_format.h"
Functions | |
| static bool | append_str (t_buff *buff, const t_rules *rules, const char *str) |
| Appends a string to the buffer with null handling. | |
| bool | append (t_buff *buff, t_rules *rules, va_list *args) |
| Appends formatted argument to buffer based on rules. | |
Appends formatted argument to buffer based on rules.
| buff | Pointer to the buffer. |
| rules | Pointer to the formatting rules. |
| args | Pointer to the variable argument list. |


Appends a string to the buffer with null handling.
| buff | Pointer to the buffer. |
| rules | Pointer to the formatting rules. |
| str | String to append (can be NULL). |

