Are you sure you don't want to use restrict, as it shows in the fopen() man page?
FILE *fopen(const char *restrict pathname, const char *restrict mode);
|
* FILE *fopen(const char *path, const char *mode); |
|
*/ |
|
|
|
struct fcurl_handle *fcurl_open(const char *url, const char *operation) |
Are you sure you don't want to use
restrict, as it shows in the fopen() man page?FILE *fopen(const char *restrict pathname, const char *restrict mode);fcurl/src/fcurl.c
Lines 143 to 146 in b50c7e0