verysuchaccount@lemmy.world to Programmer Humor@programming.devEnglish · 2 years agoSometimes I want to call malloc, just as a treatlemmy.worldimagemessage-square28linkfedilinkarrow-up1579arrow-down110
arrow-up1569arrow-down1imageSometimes I want to call malloc, just as a treatlemmy.worldverysuchaccount@lemmy.world to Programmer Humor@programming.devEnglish · 2 years agomessage-square28linkfedilink
minus-squareowenfromcanada@lemmy.worldlinkfedilinkEnglisharrow-up4·2 years agoI’d effectively gain the advantage of dynamic allocation by using a union (or just a generic unsigned char buffer[16384] and use it twice). Mostly the same thing as a malloc.
I’d effectively gain the advantage of dynamic allocation by using a union (or just a generic
unsigned char buffer[16384]
and use it twice). Mostly the same thing as a malloc.