What's holding back this optimization? – stackoverflow.com 03:08 Posted by Unknown No Comments Given this code: #include <string.h> int equal4(const char* a, const char* b) { return memcmp(a, b, 4) == 0; } int less4(const char* a, const char* b) { return memcmp(a, b, 4) < 0; ... from Hot Questions - Stack Exchange OnStackOverflow via Blogspot Share this Unknown
0 Comment to "What's holding back this optimization? – stackoverflow.com"
Post a Comment