LList_First

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > Data Structures > Linked List >

LList_First

 

Description

 

Retrieve a pointer to the first element of the Linked List container

 

Syntax

 

pFirstElement = LList_First(pList)

 

Returns

 

A pointer to first element in the Linked List

 

Parameters

 

Name

Type

Optional

Meaning

pList

Number

No

Handle of a Linked List returned by LList_New

 

Remarks

 

Restrictions

 

See also

 

LList_Last

 

Examples