Unix and Linux Discussions Tagged with append |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
73,597 |
Shell Programming and Scripting |
|
|
|
1 |
3,443 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,900 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
9,695 |
Shell Programming and Scripting |
|
|
|
4 |
3,178 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,350 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
2,632 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
251,794 |
UNIX for Advanced & Expert Users |
|
|
|
11 |
8,099 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,313 |
UNIX for Beginners Questions & Answers |
|
|
|
43 |
26,429 |
Programming |
|
|
|
2 |
2,509 |
Shell Programming and Scripting |
|
|
|
3 |
3,562 |
Shell Programming and Scripting |
|
|
|
3 |
7,753 |
Shell Programming and Scripting |
|
|
|
3 |
1,891 |
Shell Programming and Scripting |
|
|
|
3 |
4,721 |
Shell Programming and Scripting |
|
|
|
1 |
2,903 |
UNIX for Dummies Questions & Answers |
|
|
|
11 |
3,817 |
Shell Programming and Scripting |
|
|
|
8 |
4,690 |
Shell Programming and Scripting |
|
|
|
6 |
3,155 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,628 |
Shell Programming and Scripting |
|
|
|
4 |
107,915 |
Shell Programming and Scripting |
|
|
|
0 |
4,337 |
Shell Programming and Scripting |
|
|
|
4 |
3,921 |
Shell Programming and Scripting |
|
|
|
1 |
4,145 |
Shell Programming and Scripting |
|
|
|
1 |
2,299 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,585 |
Shell Programming and Scripting |
|
|
|
4 |
13,816 |
Shell Programming and Scripting |
|
|
|
2 |
5,001 |
Shell Programming and Scripting |
|
|
|
1 |
7,701 |
Shell Programming and Scripting |
|
|
|
6 |
3,757 |
Shell Programming and Scripting |
|
|
|
3 |
3,804 |
Shell Programming and Scripting |
|
|
|
17 |
33,116 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,410 |
Shell Programming and Scripting |
|
|
|
10 |
8,969 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,228 |
Shell Programming and Scripting |
|
|
|
2 |
1,986 |
Shell Programming and Scripting |
|
|
|
1 |
2,293 |
Shell Programming and Scripting |
|
|
|
4 |
4,540 |
Shell Programming and Scripting |
|
|
|
2 |
8,372 |
UNIX for Dummies Questions & Answers |
APPEND(3) MBK UTILITY FUNCTIONS APPEND(3)
NAME
append - append a chain_list to an other chain_list
ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in
Paris, France.
Web : http://asim.lip6.fr/recherche/alliance/
E-mail : alliance-users@asim.lip6.fr
SYNOPSYS
#include "mut.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 functions.
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 "mut.h"
#include "mlo.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 department of the LIP6 laboratory.
We need your feedback to improve documentation and tools.
ASIM
/LIP6 October 1, 1997 APPEND(3)