mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
ce377110d8
Differential Revision: https://phabricator.services.mozilla.com/D165625
28 lines
305 B
ReStructuredText
28 lines
305 B
ReStructuredText
PR_INIT_CLIST
|
|
=============
|
|
|
|
Initializes a circular list.
|
|
|
|
|
|
Syntax
|
|
------
|
|
|
|
.. code::
|
|
|
|
#include <prclist.h>
|
|
|
|
PR_INIT_CLIST (PRCList *listp);
|
|
|
|
|
|
Parameter
|
|
~~~~~~~~~
|
|
|
|
``listp``
|
|
A pointer to the anchor of the linked list.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
Initializes the specified list to be an empty list.
|