queue.h
contents ::
  app.c
  graph.c
  graph.h
  mylib.c
  mylib.h
  queue.c
  queue.h

#ifndef QUEUE_H
#define QUEUE_H

#include <stdio.h>

typedef struct queue_c *queue;
extern queue queue_new(int size);
extern int queue_size(queue q);
extern void queue_enqueue(queue q, int i);
extern int queue_dequeue(queue q);
#endif

James Little