Lines Matching defs:str
27 char str[12] = {0};
28 strcpy(str, "helloworld");
29 char *p = (char *)str;
35 if (strcmp(str, "hello") != 0) {
36 t_error("%s strsep get str is '%s' are not 'hello'\n", __func__, str);
47 char str[12] = {0};
48 strcpy(str, "helloworld");
49 char *p = (char *)str;
55 if (strcmp(str, "he") != 0) {
56 t_error("%s strsep get result is '%s' are not 'he'\n", __func__, str);
67 char str[12] = {0};
68 strcpy(str, "helloworld");
69 char *p = (char *)str;
75 if (strcmp(str, "helloworld") != 0) {
76 t_error("%s strsep get result is '%s' are not 'helloworld'\n", __func__, str);