Table of Contents

Name

append - append a chain_list to an other chain_list

Origin

This software belongs to the ALLIANCE CAD system from the CAO-VLSI team at ASIM/LIP6/UPMC laboratory.
LIP6/ASIM
University P. et M. Curie 4, place Jussieu 75252 PARIS Cedex 05 FRANCE
Fax : {33/0} 1.44.27.62.86
E-mail support : alliance-support@asim.lip6.fr

Synopsys

#include mut315.h"
chain_list *append(pt1, pt2)
chain_list *pt1,*pt2;

Parameters

pt1
Pointer to a chain_list
pt2
Pointer to a chain_list

Description

append appends the contains of the chain_list pointed to by pt2 at the end of the one pointed to by pt1.
The lists consistency is warranted by the use of the adequat add func_tions.

Return Value

append returns a pointer to the new head of list. If pt1 is not NULL, it has the value of pt1, else it is pt2.

Example

#include mut315.h"
#include mlo315.h"
void sig_names(s0, s1)
losig_list *s0, *s1;
{
s0->NAMECHAIN = append(s0->NAMECHAIN, s1->NAMECHAIN); }

See Also

mbk(1) , chain(3) .

Bug Report

This tool is under development at the ASIM/LIP6/UPMC laboratory, cao-vlsi research team.
We need your feedbak to improve documentation and tools. If you find bugs, please fill-in the form at http://asim.lip6.fr/alliance/support/bug-report/ Thanks for doing this.


Table of Contents

 



Alliance Web Site © 1997, 2002 ASIM/LIP6/UPMC, page maintained by Czo [Olivier Sirol] , last updated on 26 May 2000.