2019-11-11 00:11:59 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
2021-03-18 17:08:11 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stddef.h>
|
2019-11-11 00:11:59 -05:00
|
|
|
|
|
|
|
|
#include "DataTypes.h"
|
|
|
|
|
|
|
|
|
|
namespace PortabilityLayer
|
|
|
|
|
{
|
|
|
|
|
uint16_t XModemCRC(const void *bytes, size_t size, uint16_t initialValue);
|
|
|
|
|
}
|