home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
-
- /***************************************************************************
- * This function prints the contents of a vector to its output, p, starting
- * with a given element. Useful for debugging.
- * maintainer: James Hall
- */
-
- void
- echov (int argc, char **argv, int iElem, FILE * p)
- {
- int i;
-
- /* Print the contents to the screen */
-
- for (i = iElem; i < argc; i++)
- fprintf (p, "%s ", argv[i]);
-
- fprintf (p, "\n");
- }
-