From c524f660a79c33213f873b8246e0f65eb058331f Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Mon, 16 Mar 2026 18:58:34 +0300 Subject: Change comments to use /* asdf */ syntax --- stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stack.c') 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; -- cgit v1.2.3