19 lines
356 B
C
19 lines
356 B
C
/**
|
|
* @brief Mock of the RegEdit module.
|
|
* @details This file is just re-exports the RegEdit functions plus extras.
|
|
* @author Jake G
|
|
* @date 2025-12-21
|
|
* @copyright None
|
|
* @file MockRegEdit.h
|
|
*/
|
|
|
|
#ifndef MOCKREGEDIT_H
|
|
#define MOCKREGEDIT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "RegEdit.h"
|
|
|
|
#endif // MOCKREGEDIT_H
|