#include <string.h>
|
|
int
strcoll (const char *s1, const char *s2); |
#include <string.h>
#include <stdio.h>
#include <locale.h>
int main()
{
int res;
setlocale(LC_ALL,"ar_AE.ISO-8859-6");
if(strcoll("abcde","abcde")==0)
printf("Strings are same\n");
return 0;
}
Output
Strings are same
|
© 2007-2009 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user. |
|