projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added MACHINES to EXTRA_DIST so that it gets put in the distribution.
[mmh]
/
docs
/
historical
/
mh-6.8.5
/
sbr
/
copyip.c
1
/* copyip.c - copy a string array and return pointer to end */
2
3
4
char **copyip (p, q)
5
register char **p,
6
**q;
7
{
8
while (*p)
9
*q++ = *p++;
10
*q = 0;
11
12
return q;
13
}