blob: 7d2f2277c3d69c104d121e00ea942015556a4e23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <lib9.h>
char*
strecpy(char *to, char *e, char *from)
{
if(to >= e)
return to;
to = memccpy(to, from, '\0', e - to);
if(to == nil){
to = e - 1;
*to = '\0';
}else{
to--;
}
return to;
}
|