У меня есть код:
void switch (int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
Это функция, которую я включаю в другой файл .c этим файлом .h:
#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);
Что мне делать?