Enviado em 16/09/2013 - 16:51h
struct elem {
int ra;
int ano;
char curso[25];
struct elem * prox;
};
struct fila_bandeco {
struct fila_bandeco * next;
struct elem * front;
struct elem * end;
};
/* enfileirar um elemento */
extern void enqueue (struct fila_bandeco ** p_fila, int ra, int ano, char curso[]) {
int ra;
int ano;
char curso[25];
struct elem * prox;
};
struct fila_bandeco {
struct fila_bandeco * next;
struct elem * front;
struct elem * end;
};
/* enfileirar um elemento */
extern void enqueue (struct fila_bandeco ** p_fila, int ra, int ano, char curso[]) {