home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / graph+ / part02 / cpytable.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-03-01  |  786 b   |  41 lines

  1. /*
  2.  * Copyright (C) 1986   Alan Kent
  3.  *
  4.  * Permission is granted to freely distribute part or
  5.  * all of this code as long as it is not for profit
  6.  * and this message is retained in the code.
  7.  *
  8.  * No resposibility is taken for any damage or incorect
  9.  * results this program generates.
  10.  * 
  11.  */
  12.  
  13.  
  14. #include <stdio.h>
  15. #include "graph.h"
  16.  
  17.  
  18. extern table_st *new_table ();
  19.  
  20.  
  21. table_st *
  22. copy_of_table ( oldtab )
  23. table_st *oldtab;
  24. {
  25.     int i;
  26.     register table_st *table , *ftp , *ttp;
  27.  
  28.     if ( oldtab == NULL )
  29.     return ( NULL );
  30.     table = new_table ( num_cols ( oldtab ) , oldtab->size );
  31.     ftp = oldtab;
  32.     ttp = table;
  33.     while ( ftp != NULL ) {
  34.     for ( i = 0; i < table->size; i++ )
  35.         ttp->data[i] = ftp->data[i];
  36.     ftp = ftp->next;
  37.     ttp = ttp->next;
  38.     }
  39.     return ( table );
  40. }
  41.