Dynamic buffer structure for efficient string/data manipulation.
Definition libft.h:54
Structure holding format specifier rules for printf-like formatting.
Definition buff_format.h:34
bool space
Display space before positive numbers.
Definition buff_format.h:38
bool zero_padding
Pad with zeros instead of spaces.
Definition buff_format.h:42
bool hex_prefix
Display '0x' or '0X' prefix for hex numbers.
Definition buff_format.h:40
bool plus
Display '+' sign for positive numbers.
Definition buff_format.h:36
bool width_enabled
Width specifier is enabled.
Definition buff_format.h:48
char conversion
Conversion specifier character.
Definition buff_format.h:52
bool right_padding
Right-align the output.
Definition buff_format.h:44
int precision
Precision value, -1 if not set.
Definition buff_format.h:46
int width
Minimum field width.
Definition buff_format.h:50
bool is_zero
Value is zero (used for special cases).
Definition buff_format.h:54