-
Notifications
You must be signed in to change notification settings - Fork 5
/
overlay.c
48 lines (41 loc) · 1.03 KB
/
overlay.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* $Id: overlay.c,v 1.4 2008/07/15 07:40:54 bnv Exp $
* $Log: overlay.c,v $
* Revision 1.4 2008/07/15 07:40:54 bnv
* #include changed from <> to ""
*
* Revision 1.3 2002/06/11 12:37:15 bnv
* Added: CDECL
*
* Revision 1.2 2001/06/25 18:49:48 bnv
* Header changed to Id
*
* Revision 1.1 1998/07/02 17:18:00 bnv
* Initial Version
*
*/
#include <string.h>
#include "lstring.h"
/* ------------------ Loverlay ---------------- */
void __CDECL
Loverlay(const PLstr to, const PLstr newstr, const PLstr target,
long n, long length, const char pad) {
Lstr tmp;
L2STR(newstr);
L2STR(target);
n--;
if (n < 0) n = 0;
if (length == 0) {
Lstrcpy(to, target);
return;
}
if (length < 0) length = LLEN(*newstr);
if (n + length > LLEN(*target))
Lsubstr(to, target, 1, n + length, pad);
else
Lstrcpy(to, target);
LINITSTR(tmp);
Lsubstr(&tmp, newstr, 1, length, pad);
MEMCPY(LSTR(*to) + n, LSTR(tmp), (size_t) length);
LFREESTR(tmp);
} /* Loverlay */