This function should be used to create a new eNODE list. This is nothing else than a simple structure having two pointers. One pointer points to an eNODE while the other points to the next eNODE_l struct or to NULL if the current eNODE_l is the last of a list.
peNODE_l _new_eNODE_l(peXobject pEx,
char *pszFileName,
long lLineNumber
){
Note that eNODE and eNODE_l are converted to the same type of structure during build after the syntactical analysis is done.