Lines Matching refs:strcasestr
22 * @tc.desc : Test strcasestr method to intercept string
28 char *result = strcasestr(haystate, "");
30 t_error("%s strcasestr error get result is %s\n", __func__, result);
36 * @tc.desc : Test strcasestr method incoming uppercase letter interception
42 char *result = strcasestr(haystate, "B");
44 t_error("%s strcasestr error get result is %s\n", __func__, result);
50 * @tc.desc : Test strcasestr method incoming lowercase letter interception
56 char *result = strcasestr(haystate, "i");
58 t_error("%s strcasestr error get result is %s\n", __func__, result);
64 * @tc.desc : Test strcasestr method incoming string interception
70 char *result = strcasestr(haystate, "Da");
72 t_error("%s strcasestr error get result is %s\n", __func__, result);