Add lqueue.h lstack.h, and dllist.h to the list of Trick files that are ICG'ed. #614. (#621)

This commit is contained in:
jmpenn 2018-05-17 11:23:44 -05:00 committed by GitHub
parent b6f06e01c1
commit f7567aa9be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 5 deletions

View File

@ -1,7 +1,6 @@
/*
PURPOSE: (link list)
ICG: (No)
*/
/*********** doubly linked list types *************/

View File

@ -93,4 +93,7 @@
#include "trick/rand_generator.h"
#include "trick/units_conv.h"
#include "trick/lqueue.h"
#include "trick/lstack.h"
#endif

View File

@ -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;

View File

@ -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;