there is a function called strcmpi in string.h and is working fine in windows but when i try the same in linux, it thows an error
warning: implicit declaration of function ‘strcmpi’; did you mean ‘strcmp’? [-Wimplicit-function-declaration]
6 | a = strcmpi("Ather","athEr");
| ^~~~~~~
| strcmp
#include<stdio.h>
#include<string.h>
int main()
{
int a;
a = strcmpi("HEllO","heLLo");
printf("%d\n",a);
return 0;
}