Started from buttom go to the sky
This commit is contained in:
parent
96215449bd
commit
f811e55dea
4781 changed files with 10121 additions and 1743 deletions
74
stdme/src/printf/formatter/ptr.c
Normal file
74
stdme/src/printf/formatter/ptr.c
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ptr.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/16 18:16:16 by maiboyer #+# #+# */
|
||||
/* Updated: 2023/12/11 19:20:42 by maiboyer ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "me/mem/mem_set.h"
|
||||
#include "me/printf/formatter/utils.h"
|
||||
#include "me/printf/printf.h"
|
||||
#include "me/string/str_len.h"
|
||||
#define PTR_INLINE_BUF 17
|
||||
|
||||
static void fill_hex(t_str out_buf, t_u64 num, t_str base)
|
||||
{
|
||||
t_usize i;
|
||||
|
||||
mem_set(out_buf, 0, PTR_INLINE_BUF);
|
||||
out_buf[PTR_INLINE_BUF - 1] = 0;
|
||||
i = 0;
|
||||
while (i < PTR_INLINE_BUF - 1)
|
||||
{
|
||||
out_buf[PTR_INLINE_BUF - i - 2] = base[(num >> (4 * i) & 15)];
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
static void set_values_for_nil(t_usize value, t_str *out, t_printf_arg *data,
|
||||
t_printf_func f)
|
||||
{
|
||||
(void)(f);
|
||||
if (value)
|
||||
{
|
||||
data->flags &= ~PRECISION;
|
||||
data->extra.precision = 0;
|
||||
data->extra.pretty = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
*out = "(nil)";
|
||||
data->extra.precision = 0;
|
||||
data->extra.pretty = false;
|
||||
data->flags &= ~(ZERO_ALIGN | PRECISION);
|
||||
data->flags |= ALIGN;
|
||||
}
|
||||
}
|
||||
|
||||
void printf_p(t_printf_arg data, t_printf_func f)
|
||||
{
|
||||
t_u64 value;
|
||||
char inline_buffer[PTR_INLINE_BUF + 1];
|
||||
t_str start_num;
|
||||
|
||||
value = (t_u64)data.argument;
|
||||
inline_buffer[0] = '0';
|
||||
inline_buffer[1] = '\0';
|
||||
if (value)
|
||||
fill_hex(inline_buffer, value, "0123456789abcdef");
|
||||
start_num = &inline_buffer[0];
|
||||
inline_buffer[PTR_INLINE_BUF] = 0;
|
||||
while (start_num[1] != '\0' && start_num[0] == '0')
|
||||
start_num++;
|
||||
set_values_for_nil(value, &start_num, &data, f);
|
||||
pad_and_stuff(
|
||||
(t_pad_and_stuff_args){\
|
||||
.fill_zero = 0, .fill = 0, .len = str_len(start_num), .pretty = "0x", \
|
||||
.pretty_len = 2, .str = start_num, .allow_zero_fill = value != 0, \
|
||||
.sign = NULL, .sign_len = 0, }, data, f);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue