4 #include "src/lib/16_tail.h"
\r
15 void print_list(node_t * head);
\r
16 void pushe(node_t * head, int val);
\r
17 void pushs(node_t ** head, int val);
\r
18 int pop(node_t ** head);
\r
19 int remove_last(node_t * head);
\r
20 int remove_by_index(node_t ** head, int n);
\r