2025-04-27 07:49:33 -04:00

6 lines
77 B
C

inline ULONG AlignLong( ULONG nSrc )
{
return( (nSrc+3)&(~0x3) );
}