home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.lbl.gov / 2014.05.ftp.ee.lbl.gov.tar / ftp.ee.lbl.gov / mrdebug.tar.Z / mrdebug.tar / build_adj_proto.h next >
Text File  |  1993-10-25  |  870b  |  18 lines

  1. /**************************************************
  2.  
  3.   This file contains the function prototypes for
  4.   the functions in build_adj.c.
  5.  
  6. ***************************************************/
  7.  
  8. void    read_subnets( char *subnet_fl, Ifc_list *all_subnets );
  9. void    read_file( char *edge_fl, Network *net, Ifc_list *all_subnets, long extra_nodes );
  10. void    build_adj( char *edge_fl, Network *net, FILE *out );
  11. void    find_nbrs_subnet( Network *net, Interface *frm_ifc, long v );
  12. void    Print_adj( Network *net_p, FILE *out );
  13. void    print_node( Network *net_p, int i, FILE *out );
  14. Interface *find_subnet( NAME name, Ifc_list *subnets );
  15. void    add_equivalence( Equivalence **equivs, NAME name1, NAME name2 );
  16. Interface *add_ifc( Network *net, NAME frm_name, NAME to_name, char *type, int suspect );
  17. int     add_new_node( Network *net, NAME new_name, Ifc_list *subnets );
  18.