mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
This commit is contained in:
parent
b6f06e01c1
commit
f7567aa9be
@ -1,7 +1,6 @@
|
||||
|
||||
/*
|
||||
PURPOSE: (link list)
|
||||
ICG: (No)
|
||||
*/
|
||||
|
||||
/*********** doubly linked list types *************/
|
||||
|
@ -93,4 +93,7 @@
|
||||
#include "trick/rand_generator.h"
|
||||
#include "trick/units_conv.h"
|
||||
|
||||
#include "trick/lqueue.h"
|
||||
#include "trick/lstack.h"
|
||||
|
||||
#endif
|
||||
|
@ -1,4 +1,6 @@
|
||||
/***************** queue functions ***************/
|
||||
/*
|
||||
PURPOSE: (queue functions)
|
||||
*/
|
||||
|
||||
#ifndef LQUEUE_H
|
||||
#define LQUEUE_H
|
||||
@ -13,7 +15,7 @@ extern "C" {
|
||||
|
||||
typedef struct _LQUEUE
|
||||
{
|
||||
DLLIST list; /* implementing queue using a linked-list */
|
||||
DLLIST list; /* -- implementing queue using a linked-list */
|
||||
}LQUEUE;
|
||||
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
/************** stack functions *****************/
|
||||
/*
|
||||
PURPOSE: (stack functions)
|
||||
*/
|
||||
|
||||
#ifndef LSTACK_H
|
||||
#define LSTACK_H
|
||||
@ -12,7 +14,7 @@ extern "C" {
|
||||
|
||||
typedef struct _LSTACK
|
||||
{
|
||||
DLLIST list; /* implementing the stack using a list */
|
||||
DLLIST list; /* -- implementing the stack using a list */
|
||||
}LSTACK;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user