Lines Matching refs:memchr
24 * @tc.desc :Verify memchr is successed and return 0.
31 char *findch = (char *)memchr(srcstring, fitch, strlen(srcstring));
42 * @tc.desc :Verify memchr is failed and return NULL.
48 char *findch = (char *)memchr(srcstring, 'w', strlen(srcstring));
54 * @tc.desc :Verify memchr is failed when first param src is invalid.
60 char *findch = (char *)memchr(srcstring, 'w', strlen(srcstring));
66 * @tc.desc :Verify memchr is failed when second param c is invalid.
72 char *findch = (char *)memchr(srcstring, '\0', strlen(srcstring));
78 * @tc.desc :Verify memchr is failed when third param n is invalid.
84 char *findch = (char *)memchr(srcstring, 'u', INIT_LEN);