Merge pull request #431 from openshwprojects/alpha

merge IR changes by btsimon
This commit is contained in:
openshwprojects
2022-11-06 09:30:34 +01:00
committed by GitHub
2 changed files with 188 additions and 76 deletions

View File

@ -123,7 +123,7 @@ int HTTP_RegisterCallback(const char* url, int method, http_callback_fn callback
return 0;
}
int my_strnicmp(char* a, char* b, int len) {
int my_strnicmp(const char* a, const char* b, int len) {
int i;
for (i = 0; i < len; i++) {
char x = *a;