Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

strcoll - compares the str1 to*str2 in accordance with the locale(specified using the setlocale() function in C

//Declaration:  int strcoll(const char *str1, const char *str2);
//Return:       returns an integer that is interpreted as follows:
                <0      str1 is less than str2
                0       str1 is equal to str2
                >0      str1 is greater than str2


#include<stdio.h>
#include<string.h>

int main(void){

    if(strcoll("hi", "hi")) {
       printf("Equal");
    }

}