GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
APPEND(3) MBK UTILITY FUNCTIONS APPEND(3)

append - append a chain_list to an other chain_list

See the file man1/alc_origin.1.

#include "mut.h"
chain_list ∗append(pt1, pt2)
chain_list ∗pt1,∗pt2;	

Pointer to a chain_list
Pointer to a chain_list

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.

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.

#include "mut.h"
#include "mlo.h"
void sig_names(s0, s1)
losig_list ∗s0, ∗s1;
{
	s0->NAMECHAIN = append(s0->NAMECHAIN, s1->NAMECHAIN);
}

mbk(1), chain(3).

See the file man1/alc_bug_report.1.

October 1, 1997 ASIM/LIP6

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.