mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
make style
This commit is contained in:
parent
0d9223a547
commit
0373696662
483 changed files with 56514 additions and 52451 deletions
|
@ -34,12 +34,12 @@
|
|||
|
||||
static inline uint16_t le16(uint16_t v)
|
||||
{
|
||||
return (v>>8) | (v<<8);
|
||||
return (v >> 8) | (v << 8);
|
||||
}
|
||||
|
||||
static inline uint32_t le32(uint32_t v)
|
||||
{
|
||||
return (le16(v)<<16) | (le16(v>>16));
|
||||
return (le16(v) << 16) | (le16(v >> 16));
|
||||
}
|
||||
#endif // HOST_LITTLE_ENDIAN
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue