#ifndef _FILAS_H_
#define _FILAS_H_

#include "listas.h"

typedef Lista Fila;

Fila *Fcria(void);
void Fdestroi(Fila *);
Fila *Fesvazia(Fila *);
unsigned long Fquantos(Fila *);
Fila *Fpoe(Fila *, void *);
void *Ftira(Fila *);

#endif /* _FILAS_H_ */