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)
>

/*
 * lista-vec.h
 *
 * interfaz de una lista como TAD implantada sobre vectores
 */
#ifndef __LISTA_VEC_H
#define __LISTA_VEC_H

typedef double Elem;
typedef int Pos;

#define MAX_ELEM_EN_LISTA	100

struct st_lista {
	Elem elem[MAX_ELEM_EN_LISTA];
	Pos ultimo;	/* posicin que sigue al ltimo elemento de la lista */
};

typedef struct st_lista Lista;

#endif
/* EOF lista-vec.h */

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

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

(to report bad content: archivehelp @ gmail)