TianoCore EDK2 master
Loading...
Searching...
No Matches
SwapBytes16.c
Go to the documentation of this file.
1
9#include "BaseLibInternals.h"
10
23UINT16
24EFIAPI
26 IN UINT16 Value
27 )
28{
29 return (UINT16)((Value<< 8) | (Value>> 8));
30}
#define IN
Definition: Base.h:279
UINT16 EFIAPI SwapBytes16(IN UINT16 Value)
Definition: SwapBytes16.c:25