#trurl 0.14 is here. https://github.com/curl/trurl/releases/tag/trurl-0.14
Works best with libcurl 8.9.0 (and later)
@bagder ah, that fixes the space prefix bug i saw, but the #define strncasecmp
causes some windows builds to fail, which i was going to put in a pull request for
@krishean I don't see why, but I always welcome PRs!
@bagder strncasecmp is an existing function in the mingw windows headers, so the build fails with a function redefined error (-Werror)
my solution was to rename it to trurl_casecompare
@krishean the code does not use strncasecmp
@krishean ah, so its a define there? maybe we can undef it first?
@bagder it was tidier just to remove the define and rename the function in a couple places, undef seemed a little messy
@bagder almost, i was seconds away from hitting submit on my pr: https://github.com/curl/trurl/commit/10db71ac15b010c09ce2c557adb0963d6c7a65aa
@bagder should i still submit it, or would you rather use your version?
@krishean I prefer the shorter name!
@krishean but thank you!
@bagder alright, sounds good to me