Embedded Systems
king.lst
Associated article: Dynamic Run-Time Structures
Tags: Parallel Embedded Systems
_DYNAMIC RUN-TIME STRUCTURES_
by Todd King
LISTING 1
/* Dynamic structure include file */
#ifndef _V_STRUCT_
#define _V_STRUCT_
#include <stdio.h>
char *Var_types[] = { "int", "float", "double", ""};
enum V_TYPES { UNKNOWN=...


