Formatting

This commit is contained in:
Starbeamrainbowlabs 2019-01-03 19:14:27 +00:00
parent ec2dff71c1
commit 60c36c247c
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 3 additions and 6 deletions

View File

@ -208,15 +208,12 @@ void AES_Shift_Rows(unsigned char (*State)[4]);
void AES_Mix_Collums(unsigned char (*State)[4]);
void AES_Calculate_Round_Key(unsigned char Round, unsigned char *Round_Key);
int DIO0()
{
int DIO0() {
return digitalRead(DIO0PIN);
}
void memcpy(char *dest,char *src,int len)
{
while(len--)
{
void memcpy(char *dest,char *src,int len) {
while(len--) {
*dest++ = *src++;
}
}