Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/05/2008, 14:48
Adree
 
Fecha de Ingreso: abril-2008
Mensajes: 28
Antigüedad: 16 años, 6 meses
Puntos: 0
Respuesta: Problema con puntero

Ok aqui esta todo definido

typedef struct stNode {
char paraula[MAX_CARACTERS];
struct stNode *siguiente;
} tNode;

/* LISTA */
typedef struct {
tNode *primero;
} tLlista;

/* ITERADOR LISTA */
typedef tNode* tIteradorLlista;

Gracias