diff options
| author | mo khan <mo.khan@gmail.com> | 2020-08-05 21:35:29 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-08-05 21:35:29 -0600 |
| commit | 8ebf2af9526cbc66dfdb1a305cb5d594c19d45b7 (patch) | |
| tree | ac16b8a393ab8f856841c64fd9b88f4b3523d42f /src/02/05/stack.h | |
| parent | 97628ebac511e3cb9d19921471bbedf180ba4025 (diff) | |
Implement stack peek
Diffstat (limited to 'src/02/05/stack.h')
| -rw-r--r-- | src/02/05/stack.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/02/05/stack.h b/src/02/05/stack.h index 1e7d885..12d78f5 100644 --- a/src/02/05/stack.h +++ b/src/02/05/stack.h @@ -9,3 +9,4 @@ typedef struct { Stack *stack_init(int data); int stack_size(Stack *self); +int stack_peek(Stack *self); |
