I am searching for a faster method of accomplishing this:
int is_empty(char * buf, int size) { int i; for(i = 0; i < size; i++) { if(buf[
I think I have a good solution for this. Create a dummy zeroed array and use memcmp(). Thats what I do.