>>106522135
that was uninformed
>because the optimal memory layout varies with the task at hand
simple example:
you want to work with sized strings?
you use this struct:
struct s_str_b
{
size_t size;
char text[];
};
you wanna work with slices?
you use this struct
struct s_str_a
{
size_t size;
char *text;
};
whats the difference?
one additional dereferencing.
also
arent you the retard in picrel?