view src/c/queue.h @ 899:25a038a9194b

dtable example and demos both working
author Adam Chlipala <adamc@hcoop.net>
date Thu, 06 Aug 2009 11:54:28 -0400
parents 60240acd15b9
children
line wrap: on
line source
#ifndef QUEUE_H
#define QUEUE_H

int uw_dequeue();
void uw_enqueue(int);

#endif