Im on Windows and if I try to include curl in c i get the following error:
curl/curl.h: No such file or directory
I have curl installed and it runs fine in the command line.
Code:
#include <curl/curl.h>
#include <stdio.h>
#include <string.h>
int main(void) {
return 0;
}
Full Error:
PS E:\Computer\Code> gcc .\test.c
.\test.c:1:10: fatal error: curl/curl.h: No such file or directory
1 | #include <curl/curl.h>
| ^~~~~~~~~~~~~
compilation terminated.