/* * G. S. Fowler * AT&T Bell Laboratories * * name-value struct support */ #ifndef __NAMVAL_H__ #define __NAMVAL_H__ struct namval { char* name; int value; }; #endif