diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-16 18:58:34 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-16 18:58:34 +0300 |
| commit | c524f660a79c33213f873b8246e0f65eb058331f (patch) | |
| tree | 6f72f7305f35b97abab669f20c61b67da68ef80a /stack.c | |
| parent | 76067d0625f35f85f0bf775f83c12447d5d12a21 (diff) | |
Change comments to use /* asdf */ syntax
Diffstat (limited to 'stack.c')
| -rw-r--r-- | stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ PositionStack ps_new(void) { } int ps_push(PositionStack *ps, Position pos) { - //TODO: check for stack overflow + /*TODO: check for stack overflow */ ps->arr[ps->top] = pos; ps->top += 1; return 0; |
