PLUTO
4.4-patch2
|
#include <structs.h>
Data Fields | |
int | nvar |
int | indx [2046] |
int | i |
The List defines a collection of integer values typically used as argument to the FOR_EACH() macro. Variables are stored sequentially in such a way that structure elements can be conveniently initialized upon declaration:
intList list = {4, MX1, MX2, MX3, ENG};
list will have 4 elements so that, using the FOR_EACH macro a loop will be done on MX1, MX2, MX3, ENG.
int i |
Internal counter.
int indx[2046] |
Array of integers containg variables indices.
int nvar |
Number of variables.