我有两个头文件:ah 和 bh 根据某些条件,我只想使用其中一个。我怎样才能做到这一点?
这里有一些代码:
主.c:
#include<stdio.h>
#include"a.h"
#include"b.h"
main() {
test();
system("pause");
return 0;
}
啊:
#ifndef A_H
#define A_H
#include<stdio.h>
void test();
#endif
交流:
#include "a.h"
void test() {
printf("Got tested from a.\n");
}
:
#ifndef B_H
#define B_H
#include<stdio.h>
void test();
#endif
公元前:
#include "b.h"
void test() {
printf("Got tested from b.\n");
}
正如我之前所说,我只想使用其中一个。我该怎么做?