static int raf_readLittleEndianInt(RandomAccessFile raf) ctex { int a = ubyteToInt(raf.readByte()); int b = ubyteToInt(raf.readByte()); int c = ubyteToInt(raf.readByte()); int d = ubyteToInt(raf.readByte()); ret a | (b << 8) | (c << 16) | (d << 24); }