with LSC.Types;
package LSC.Byteorder32 is
function Native_To_BE (Item : Types.Word32) return Types.Word32; pragma Inline (Native_To_BE);
Item
function Native_To_LE (Item : Types.Word32) return Types.Word32; pragma Inline (Native_To_LE);
function BE_To_Native (Item : Types.Word32) return Types.Word32; pragma Inline (BE_To_Native);
function LE_To_Native (Item : Types.Word32) return Types.Word32; pragma Inline (LE_To_Native);
end LSC.Byteorder32;