Lines Matching refs:T_CString_stricmp
108 if(T_CString_stricmp(src, "THIS is lower CASE") != 0){
109 log_err("FAIL: *****T_CString_stricmp() failed.");
111 if((intValue=T_CString_stricmp(NULL, "first string is null") )!= -1){
112 log_err("FAIL: T_CString_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
114 if((intValue=T_CString_stricmp("second string is null", NULL)) != 1){
115 log_err("FAIL: T_CString_stricmp() where the second string is null failed. Expected: 1, returned %d\n", intValue);
117 if((intValue=T_CString_stricmp(NULL, NULL)) != 0){
118 log_err("FAIL: T_CString_stricmp(NULL, NULL) failed. Expected: 0, returned %d\n", intValue);;
120 if((intValue=T_CString_stricmp("", "")) != 0){
121 log_err("FAIL: T_CString_stricmp(\"\", \"\") failed. Expected: 0, returned %d\n", intValue);;
123 if((intValue=T_CString_stricmp("", "abc")) != -1){
124 log_err("FAIL: T_CString_stricmp(\"\", \"abc\") failed. Expected: -1, returned %d\n", intValue);
126 if((intValue=T_CString_stricmp("abc", "")) != 1){
127 log_err("FAIL: T_CString_stricmp(\"abc\", \"\") failed. Expected: 1, returned %d\n", intValue);
153 log_err("FAIL: T_CString_stricmp(\"\", \"abc\", 10) failed. Expected: -1, returned %d\n", intValue);