@ben You know how your website would really mess up my phone?
I found another one that does that.
This looks quite interesting.
https://hacks.mozilla.org/2021/02/introducing-state-partitioning/
C Help?
I have something like this to detect if any bits are set:
bool empty = true;
size_t* buffer = ...;
for(int i = 0; i < 4096 / sizeof(size_t); i++){
if(buffer[i]){
empty = false;
break;
}
}
And someone is telling me to use char* instead, I don't see what difference this will make except to be slower.
Any ideas?
Computer programmer interested in everything from the transistors to user experience. Jack of all, master of few.
My views are not that of my ex-employer.