Skip to content

Commit

Permalink
const catch
Browse files Browse the repository at this point in the history
  • Loading branch information
agl-alexglopez committed Dec 12, 2024
1 parent 9e3aa6a commit db80638
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/singly_linked_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ ccc_sll_is_empty(ccc_singly_linked_list const *const sll)
/*========================= Private Interface ==========================*/

void
ccc_impl_sll_push_front(struct ccc_sll_ *const sll, struct ccc_sll_elem_ *elem)
ccc_impl_sll_push_front(struct ccc_sll_ *const sll,
struct ccc_sll_elem_ *const elem)
{
push_front(sll, elem);
}
Expand Down

0 comments on commit db80638

Please sign in to comment.