diff options
| author | Vito Caputo <vcaputo@pengaru.com> | 2025-11-10 23:50:19 -0800 |
|---|---|---|
| committer | Vito Caputo <vcaputo@pengaru.com> | 2025-11-10 23:50:19 -0800 |
| commit | d852e4ff2b16aae4b900074c1117789e350a512e (patch) | |
| tree | 900255735dcbbf969a93e239133c7ebd02aa4d0c /src/vcr.c | |
| parent | fdebbbfdb8675a3528a9f66c075ca60ffd67553a (diff) | |
vcr: add phase accessor
Diffstat (limited to 'src/vcr.c')
| -rw-r--r-- | src/vcr.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1850,6 +1850,13 @@ void vcr_advance_phase(vcr_t *vcr, int delta) } } +int vcr_phase_x(vcr_t *vcr) +{ + assert(vcr); + + return vcr->phase; +} + /* return the # of combined hierarchy+snowflakes rows in chart */ static inline int vcr_composed_rows(vcr_t *vcr) |
