I have a C file that needs a specific header file. If that header file does not exist, I want the preprocessor to issue a specific warning. Something like:
#if !(#include <special.h>)
#warning "Don't worry, you can fix this."
#warning "You just need to update this other repo over here:"
#endif
Is this possible with the C preprocessor?