home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / search / remque.txh < prev   
Encoding:
Text File  |  1995-07-23  |  528 b   |  30 lines

  1. @node remque, misc
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <search.h>
  6.  
  7. void putenv(struct qelem *elem);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function manipulates queues built from doubly linked lists.  Each element
  13. in the queue must be in the form of @code{struct qelem} which is defined
  14. thus:
  15.  
  16. @example
  17. struct qelem @{
  18.   struct qelem *q_forw;
  19.   struct qelem *q_back;
  20.   char q_data[0];
  21. @}
  22. @end example
  23.  
  24. This function removes the entry @var{elem} from a queue.
  25.  
  26. @subheading Return Value
  27.  
  28. None.
  29.  
  30.