/* * copyip.c -- copy a string array and return pointer to end * * $Id: copyip.c,v 1.1.1.1 1999-02-07 18:14:07 danw Exp $ */ #include char ** copyip (char **p, char **q, int len_q) { while (*p && --len_q > 0) *q++ = *p++; *q = NULL; return q; }