Embedded Systems
peterson.lst
Associated article: Roll Your Own Minilanguages With Mini-Interpreters
Tags: Embedded Systems
_SETTING PRECEDENCE_
by Mark C. Peterson
[LISTING ONE]
/* SPARRAY.H - Header file for SPARRAY.C */
/* Copyright (C) 1988, Mark C. Peterson */
#ifndef SPARRAY_H
#define SPARRAY_H
union VARIABLE {
long Num;
void *Ptr;
};
typedef struct _SPELEM {
struct _SPELEM *Higher, *Lower;
...


