tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

pr_list_tail.rst (370B)


      1 PR_LIST_TAIL
      2 ============
      3 
      4 Returns the tail of a circular list.
      5 
      6 
      7 Syntax
      8 ------
      9 
     10 .. code::
     11 
     12   #include <prclist.h>
     13 
     14   PRCList *PR_LIST_TAIL (PRCList *listp);
     15 
     16 
     17 Parameter
     18 ~~~~~~~~~
     19 
     20 ``listp``
     21   A pointer to the linked list.
     22 
     23 
     24 Returns
     25 ~~~~~~~
     26 
     27 A pointer to a list element.
     28 
     29 
     30 Description
     31 -----------
     32 
     33 :ref:`PR_LIST_TAIL` returns the tail of the specified circular list.