Legofit
infers population history from nucleotide site patterns.
uintqueue.h
1#ifndef ARR_UINTQUEUE_H
2#define ARR_UINTQUEUE_H
3
4#include "typedefs.h"
5
6UINTqueue *UINTqueue_push(UINTqueue *prev, unsigned val);
7UINTqueue *UINTqueue_pop(UINTqueue *self, unsigned *value);
8UINTqueue *UINTqueue_free(UINTqueue *self);
9int UINTqueue_length(UINTqueue *self);
10
11#endif
Definition: uintqueue.c:11