INT8 *__stdcall RtlEthernetAddressToStringA(_DL_EUI48 *Addr, INT8 *S){
int v3;
int v4;
int v5;
int v6;
int v7;
v7 = Addr->Byte[5];
v6 = Addr->Byte[4];
v5 = Addr->Byte[3];
v4 = Addr->Byte[2];
v3 = Addr->Byte[1];
return &S[(int)sprintf_s(S, 0x12ui64, (INT8 *)"%02X-%02X-%02X-%02X-%02X-%02X", Addr->Byte[0], v3, v4, v5, v6, v7)];
}