BOOTSTRAP (
kutils
) functions
LIBRARY ROUTINE
klist_merge - merge two linked list into a single linked list
LIBRARY CALL
klist *klist_merge( klist *list1, klist *list2)
INPUT
list1
- The first linked list
list2
- The second linked list
OUTPUT
none
RETURN VALUE
The newly merge linked list, which is really the head of the first list, or NULL upon failure.
DESCRIPTION
Merge two linked list into a single linked by tacking the second list onto the end of the first.
ADDITIONAL INFORMATION
none
EXAMPLES
none
SIDE EFFECTS
none
RESTRICTIONS
none
MODIFICATION
none
FILES
$BOOTSTRAP/objects/library/kutils/src/list.c
SEE ALSO
kutils(3)
COPYRIGHT
Copyright (C) 1993 - 1997, Khoral Research, Inc. ("KRI") All rights reserved.