The c/c++ strncmp signature is like the following:
int strncmp ( const char * str1, const char * str2, size_t num );
My question is what's the return value if num is 0? How the standard says? Don't find an answer from some online documents.
Thanks.