Go to the documentation of this file.
9 typedef enum {
false,
true}
bool;
33 #define asdl_seq_GET(S, I) (S)->elements[(I)]
34 #define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
36 #define asdl_seq_SET(S, I, V) { \
38 assert((S) && _asdl_i < (S)->size); \
39 (S)->elements[_asdl_i] = (V); \
42 #define asdl_seq_SET(S, I, V) (S)->elements[I] = (V)
Copyright 2014 Google Inc. All rights reserved.