Debian – GCC doesn't warn about implicit pointer to integer conversion
Background I was writing code that uses functions from ctype.h to identify things in strings. I accidentally passed the string (char*) to the function(s) which take and int type, causing the program to segfault. It was easy enough to see…