mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-26 07:20:32 +00:00
16 lines
428 B
C
16 lines
428 B
C
/* =========================================================================
|
|
CMock - Automatic Mock Generation for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-26 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#ifndef _MODEL_H
|
|
#define _MODEL_H
|
|
|
|
#include "Types.h"
|
|
|
|
void Model_Init(void);
|
|
|
|
#endif // _MODEL_H
|