<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > Data Structures > Linked List > LList_InsPrev |
Description
Insert an element before a Linked List element
Syntax
LList_InsPrev(pList, pelement, sData)
Returns
Nothing
Parameters
Name |
Type |
Optional |
Meaning |
pList |
Number |
No |
Handle of a Linked List returned by LList_New |
pElement |
Number |
No |
Pointer to the element before which insert the new element |
sData |
String |
No |
Data to be added |
Remarks
Restrictions
See also
Examples