#ifndef _OSET_T_H_ #define _OSET_T_H_ typedef int (*oset_ft) ( char* ); typedef struct oset_tag { void *d; char type; // w word, i int, s str, S static str, b bool, c char char *name; oset_ft func; } oset_t; #endif