Home
last modified time | relevance | path

Searched refs:endOfDir (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/flex/src/
H A Dmain.c359 const char *endOfDir = strchr(path, ':'); in check_options() local
360 if (!endOfDir) in check_options()
361 endOfDir = path+length; in check_options()
364 char *m4_path = calloc(endOfDir-path + 1 + m4_length + 1, 1); in check_options()
366 memcpy(m4_path, path, endOfDir-path); in check_options()
367 m4_path[endOfDir-path] = '/'; in check_options()
368 memcpy(m4_path + (endOfDir-path) + 1, m4, m4_length + 1); in check_options()
376 path = endOfDir+1; in check_options()