我有个问题。假设 2 个团队对包含头文件“test.c”的源文件进行了修改,但是一个团队将该文件称为“test.C”,另一个团队将其称为“test.c” 有没有办法有条件地包含它C中的文件?就像是:
#ifdef test.C
#include "test.C"
#else
#include "test.c"
#endif
我有个问题。假设 2 个团队对包含头文件“test.c”的源文件进行了修改,但是一个团队将该文件称为“test.C”,另一个团队将其称为“test.c” 有没有办法有条件地包含它C中的文件?就像是:
#ifdef test.C
#include "test.C"
#else
#include "test.c"
#endif