New to GitHub and such, but I noticed this wont compile on Windows (under Luarocks), due to it relying on "strncasecmp". I worked around this by manually adding: ``` #if defined(_WIN32) || defined(_WIN64) # define strncasecmp _strnicmp # endif ```