Searched refs:sep (Results 1 – 4 of 4) sorted by relevance
/libuv/test/ |
H A D | test-strtok.c | 31 const char* sep; member 79 tok_r = uv__strtok(current_test, tests[i].sep, &itr); in TEST_IMPL() 84 tok_r = uv__strtok(NULL, tests[i].sep, &itr); in TEST_IMPL()
|
H A D | test-spawn.c | 2083 char* sep; in TEST_IMPL() local 2092 sep = strrchr(exepath, '/'); in TEST_IMPL() 2093 if (sep == NULL) in TEST_IMPL() 2094 sep = strrchr(exepath, '\\'); in TEST_IMPL() 2095 ASSERT_NOT_NULL(sep); in TEST_IMPL() 2098 memmove(sep + 2, sep, 1 + strlen(sep)); in TEST_IMPL() 2099 sep[0] = '\0'; in TEST_IMPL() 2100 sep[1] = '.'; in TEST_IMPL() 2101 sep[2] = '/'; in TEST_IMPL() 2104 options.file = options.args[0] = sep + 1; in TEST_IMPL()
|
/libuv/src/ |
H A D | strtok.c | 25 char* uv__strtok(char* str, const char* sep, char** itr) { in uv__strtok() argument 39 sep_itr = sep; in uv__strtok()
|
H A D | strtok.h | 25 char* uv__strtok(char* str, const char* sep, char** itr);
|
Completed in 9 milliseconds