Large change that removes the duplicated MIT notice withe a spdx tag Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
24 lines
309 B
C
24 lines
309 B
C
/*
|
|
* Author: Alex Tereschenko <alext.mkrs@gmail.com>
|
|
* Copyright (c) 2016 Alex Tereschenko.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "mraa_internal.h"
|
|
|
|
#define MRAA_MOCK_PINCOUNT 10
|
|
|
|
mraa_board_t*
|
|
mraa_mock_board();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|