我有一个代码:
void switch (int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
这是我通过这个.h文件包含在其他.c文件中的功能:
#ifndef SWITCHINT_H
#define SWITCHINT_H
void switch (int *a, int *b);
#endif
但是控制台会显示以下内容:
switchInt.c:1:5: error: expected identifier or ‘(’ before ‘switch’
void switch (int *a, int *b);s
switchInt.h:4:6: error: expected identifier or ‘(’ before ‘switch’
void switch (int *a, int *b);
我该怎么办?