Hello,
studying libc source code I found that many functions in <string.h> are completely unsafe, there is no check pointer type parameters against NULL value. For example, using
studying libc source code I found that many functions in <string.h> are completely unsafe, there is no check pointer type parameters against NULL value. For example, using
strcmp(NULL, NULL) causes Segmentation fault. But why?