|
Libft
Custom implementation of core libc functions with additional utility helpers.
|

Functions | |
| static bool | apply_precision (t_buff *buff, const t_rules *rules) |
| Applies precision formatting to the buffer. | |
| static bool | apply_plus_space (t_buff *buff, const t_rules *rules) |
| Applies plus or space sign formatting for positive numbers. | |
| static bool | apply_hex_prefix (t_buff *buff, const t_rules *rules) |
| Applies hexadecimal prefix (0x or 0X) to the buffer. | |
| static bool | apply_width (t_buff *buff, const t_rules *rules) |
| Applies width padding to the buffer. | |
| bool | rules_apply (t_buff *buff, t_rules *rules) |
| Applies formatting rules to a buffer. | |
Applies hexadecimal prefix (0x or 0X) to the buffer.
| buff | Pointer to the buffer. |
| rules | Pointer to the formatting rules. |


Applies plus or space sign formatting for positive numbers.
| buff | Pointer to the buffer. |
| r | Pointer to the formatting rules. |


Applies precision formatting to the buffer.
| buff | Pointer to the buffer. |
| rules | Pointer to the formatting rules. |


Applies width padding to the buffer.
| b | Pointer to the buffer. |
| r | Pointer to the formatting rules. |

