1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 13:25:53 +02:00
libcproject/lib/stack.h

63 lines
918 B
C
Raw Normal View History

#ifndef __LIBCPROJECT_STACK__
#define __LIBCPROJECT_STACK__
2023-01-05 19:28:05 +01:00
#include <errno.h>
2023-01-07 19:38:01 +01:00
#include <stdio.h>
2023-01-05 19:28:05 +01:00
#include <stdlib.h>
2023-06-25 15:07:34 +02:00
#include "types.h"
/**
* @brief Stack structure => LIFO (Last In First Out).
* @since v1.0.0
*/
2023-01-05 19:28:05 +01:00
struct stack {
struct stack_node *first;
size_t length;
};
/**
* @brief Stack node structure.
* @since v1.0.0
*/
2023-01-05 19:28:05 +01:00
struct stack_node {
void *data;
struct stack_node *next;
};
/**
* @brief Stack initialization.
2023-08-09 21:08:15 +02:00
*
* @return struct stack*
* @since v1.0.0
*/
2023-01-05 19:28:05 +01:00
struct stack *stack_initialization();
/**
* @brief Push data to stack.
2023-08-09 21:08:15 +02:00
*
* @param stack
* @param data
* @since v1.0.0
*/
2023-01-05 19:28:05 +01:00
void stack_push(struct stack *stack, void *data);
/**
* @brief Pop data from stack.
2023-08-09 21:08:15 +02:00
*
* @param stack
* @return void*
* @since v1.0.0
*/
2023-01-05 19:28:05 +01:00
void *stack_pop(struct stack *stack);
2023-08-03 23:01:19 +02:00
/**
* @brief Frees the stack.
2023-08-09 21:08:15 +02:00
*
* @param stack
2023-08-05 15:03:53 +02:00
* @since v3.0.0
2023-08-03 23:01:19 +02:00
*/
void stack_free(struct stack *stack);
2023-01-05 19:28:05 +01:00
#endif