12 lines
139 B
C
12 lines
139 B
C
|
|
#ifndef STRUCT_LIST_VALUE
|
|
#define STRUCT_LIST_VALUE
|
|
|
|
struct list_value
|
|
{
|
|
struct value* first;
|
|
|
|
struct value* rest;
|
|
};
|
|
|
|
#endif
|