*/
static char *
-S_delimcpy(char *to, const char *toend, const char *from,
+S_delimcpy_intern(char *to, const char *toend, const char *from,
const char *fromend, int delim, I32 *retlen,
const bool allow_escape)
{
{
PERL_ARGS_ASSERT_DELIMCPY;
- return S_delimcpy(to, toend, from, fromend, delim, retlen, 1);
+ return S_delimcpy_intern(to, toend, from, fromend, delim, retlen, 1);
}
char *
{
PERL_ARGS_ASSERT_DELIMCPY_NO_ESCAPE;
- return S_delimcpy(to, toend, from, fromend, delim, retlen, 0);
+ return S_delimcpy_intern(to, toend, from, fromend, delim, retlen, 0);
}
/*