Previous: struct x1f4_sanction_type, Up: Imperative Language Interpreter Types [Index]
typedef struct x1f4_sentence_type { const char *text; unsigned fit1, fit2, pass, size; } x1f4_sentence_type;
The struct x1f4_sentence_type
record describes collection traversal
statements, more properly, how to construct them.
Its fields are:
text
is the template for the construction of the traversal statement.
size
is the length of text
in bytes.
fit1
is the number of appearances in text
of literal ‘;0’, the string
that is to be replaced by the name of the first variable by which the traversal
is done.
fit2
is the number of appearances in text
of literal ‘;1’, the string
that is to be replaced by the name of the second variable by which the
traversal is done.
pass
is the number of appearances in text
of literal ‘;*’, the string
that is to be replaced by the textual identification of the collection to be
traversed.