LList_Free

<< Click to Display Table of Contents >>

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

LList_Free

 

Description

 

Free a previously allocated Linked List container (and all elements data) and return zero

 

Syntax

 

n = LList_Free(pList)

 

Returns

 

Zero

 

Parameters

 

Name

Type

Optional

Meaning

pList

Number

No

Handle of a Linked List returned by LList_New

 

Remarks

 

After this function execution, Linked List container handle (pList) is not anymore a valid Linked List container.

 

Restrictions

 

See also

 

Examples