www.delorie.com/djgpp/doc/libc-2.01/libc_533.html   search  
Go to the first, previous, next, last section, table of contents.


remque

Syntax

#include <search.h>

void putenv(struct qelem *elem);

Description

This function manipulates queues built from doubly linked lists. Each element in the queue must be in the form of struct qelem which is defined thus:

struct qelem {
  struct qelem *q_forw;
  struct qelem *q_back;
  char q_data[0];
}

This function removes the entry elem from a queue.

Return Value

None.


Go to the first, previous, next, last section, table of contents.

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997