aboutsummaryrefslogtreecommitdiff
path: root/stack.c
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-16 18:58:34 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-16 18:58:34 +0300
commitc524f660a79c33213f873b8246e0f65eb058331f (patch)
tree6f72f7305f35b97abab669f20c61b67da68ef80a /stack.c
parent76067d0625f35f85f0bf775f83c12447d5d12a21 (diff)
Change comments to use /* asdf */ syntax
Diffstat (limited to 'stack.c')
-rw-r--r--stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stack.c b/stack.c
index cf169c5..c915afd 100644
--- a/stack.c
+++ b/stack.c
@@ -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;