14 lines
180 B
C
14 lines
180 B
C
/*
|
|
* Error_Check.c
|
|
*
|
|
* Created on: Jun 16, 2022
|
|
* Author: max
|
|
*/
|
|
|
|
#include "Error_Check.h"
|
|
|
|
ErrorFlags CheckErrorFlags() {
|
|
ErrorFlags errors = {0};
|
|
return errors;
|
|
}
|