#include "stack.h" int main(){ stack s; int value = 0; stack_init(&s); // stack_is_empty(stack s) stack_peek(s, &value); stack_pop(&s, &value); }