Name
sl_getlist — Get the first node in a Skiplist
Synopsis
#include "skiplist.h"
| struct skiplistnode * **sl_getlist** (
| sl)
; | |
Description
Get the first node (according to the main index) in a Skiplist.
- sl
-
The Skiplist.
On success this function returns the first node; on failure, NULL
is returned.
It is legal to call this function in any thread but Skiplist functions are not thread safe.
See Also
Was this page helpful?