Home
last modified time | relevance | path

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

/build/make/tools/acp/
Dacp.c46 int stripDestLen; in process() local
60 stripDestLen = strlen(argv[argc-1]); in process()
61 stripDest = malloc(stripDestLen+1); in process()
62 memcpy(stripDest, argv[argc-1], stripDestLen+1); in process()
63 if (stripDest[stripDestLen-1] == FSSEP) { in process()
64 stripDest[--stripDestLen] = '\0'; in process()
141 dst = malloc(stripDestLen +1 + srcNameLen +1); in process()
142 memcpy(dst, stripDest, stripDestLen); in process()
143 dst[stripDestLen] = FSSEP; in process()
144 memcpy(dst + stripDestLen+1, srcName, srcNameLen+1); in process()