This Text file is old! In a 🏛️Museum, an unsorted archive of (user-)pages. (Saved from Geocities in Oct-2009. The archival story: oocities.org)
--------------------------------------- (To 🚫report any bad content: archivehelp @ gmail.com)
>

/*
 * cola-circular.h
 *
 * Implantacion de colas circulares en vectores.
 */
#ifndef __COLA_CIRCULAR_H
#define __COLA_CIRCULAR_H

typedef double Elem;

#define MAX_ELEMENTOS_EN_COLA 100

typedef  struct st_cola {
		Elem elementos[MAX_ELEMENTOS_EN_COLA];
		int anterior;
		int posterior;
} Cola;


#endif
/* EOF cola-circular.h */

Text file Source (historic): geocities.com/ar/uap_c2a/ejemplos/cola

geocities.com/ar/uap_c2a/ejemplos
geocities.com/ar/uap_c2a
geocities.com/ar

(to report bad content: archivehelp @ gmail)