projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added test of -nosequence to test-pick.
[mmh]
/
docs
/
historical
/
mh-6.8.5
/
sbr
/
copy.c
1
/* copy.c - copy a string and return pointer to NULL terminator */
2
3
4
char *copy (from, to)
5
register char *from,
6
*to;
7
{
8
while (*to++ = *from++)
9
continue;
10
11
return (to - 1);
12
}