Loggy_McLogger/Core/Src/cir_buf.c
2024-06-24 20:13:52 -05:00

18 lines
403 B
C

/**
*********************************************************************
*
* @file cir_buf.c
* @brief Circular buffer header file
*
* @date 2024-04-21 18:36:52
* @author CT
*
* @details Provides an interface for creating and interacting with circular
* buffers.
*
*************************************************************************
**/
#include <stdint.h>
#include "cir_buf.h"