/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* Glenn Fowler
* AT&T Bell Laboratories
*
* in place replace of first occurrence of /match/ with /replace/ in path
* end of path returned
*/
#include <ast.h>
char*
{
}
#include <ast_api.h>
char*
pathrepl_20100601(register char* path, size_t size, const char* match, register const char* replace)
{
register const char* m = match;
register const char* r;
char* t;
if (!match)
match = "";
if (!replace)
replace = "";
if (!size)
for (;;)
{
if (!*path) break;
if (*path == *m)
{
t = path;
if (!*m && *path == '/')
{
register char* p;
p = t;
r = replace;
while (p < path && *r) *p++ = *r++;
else if (*r && p >= path)
{
register char* u;
u = t + strlen(r);
while (t >= path) *u-- = *t--;
while (*r) *p++ = *r++;
}
else p += strlen(p) + 1;
return(p - 1);
}
path = t;
m = match;
}
}
return(path);
}