mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-07-10 22:30:27 +00:00
17 lines
495 B
C
17 lines
495 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 _TIMERCONDUCTOR_H
|
|
#define _TIMERCONDUCTOR_H
|
|
|
|
#include "Types.h"
|
|
|
|
void TimerConductor_Init(void);
|
|
void TimerConductor_Run(void);
|
|
|
|
#endif // _TIMERCONDUCTOR_H
|