12345678910111213141516171819202122232425262728293031(*
* Copyright (c) 2013 Jeremy Yallop.
*
* This file is distributed under the terms of the MIT License.
* See the file LICENSE for details.
*)letformat_sintfmtv=Format.fprintffmt"<sint %s>"(Signed.SInt.to_stringv)letformat_longfmtv=Format.fprintffmt"<long %s>"(Signed.Long.to_stringv)letformat_llongfmtv=Format.fprintffmt"<llong %s>"(Signed.LLong.to_stringv)letformat_ucharfmtv=Format.fprintffmt"<uchar %s>"(Unsigned.UChar.to_stringv)letformat_uint8fmtv=Format.fprintffmt"<uint8 %s>"(Unsigned.UInt8.to_stringv)letformat_uint16fmtv=Format.fprintffmt"<uint16 %s>"(Unsigned.UInt16.to_stringv)letformat_uint32fmtv=Format.fprintffmt"<uint32 %s>"(Unsigned.UInt32.to_stringv)letformat_uint64fmtv=Format.fprintffmt"<uint64 %s>"(Unsigned.UInt64.to_stringv)letformat_ushortfmtv=Format.fprintffmt"<ushort %s>"(Unsigned.UShort.to_stringv)letformat_uintfmtv=Format.fprintffmt"<uint %s>"(Unsigned.UInt.to_stringv)letformat_ulongfmtv=Format.fprintffmt"<ulong %s>"(Unsigned.ULong.to_stringv)letformat_ullongfmtv=Format.fprintffmt"<ullong %s>"(Unsigned.ULLong.to_stringv)