| 380 | } |
| 381 | |
| 382 | static const char * field_value(char ** style, int index) |
| 383 | { |
| 384 | if (index >= 0 && index < hb_str_vlen(style)) |
| 385 | { |
| 386 | return style[index]; |
| 387 | } |
| 388 | return NULL; |
| 389 | } |
| 390 | |
| 391 | typedef struct ssa_style_indices_s |
| 392 | { |
no test coverage detected