tor-browser

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

pr_next_link.rst (462B)


      1 PR_NEXT_LINK
      2 ============
      3 
      4 Returns the next element in a list.
      5 
      6 
      7 Syntax
      8 ------
      9 
     10 .. code::
     11 
     12   #include <prclist.h>
     13 
     14   PRCList *PR_NEXT_LINK (PRCList *elemp);
     15 
     16 
     17 Parameter
     18 ~~~~~~~~~
     19 
     20 ``elemp``
     21   A pointer to the element.
     22 
     23 
     24 Returns
     25 ~~~~~~~
     26 
     27 A pointer to a list element.
     28 
     29 
     30 Description
     31 -----------
     32 
     33 PR_NEXT_LINK returns a pointer to the element following the specified
     34 element. It can be used to traverse a list. The following element is not
     35 removed from the list.