コード例 #1
0
ファイル: Pack.class.php プロジェクト: fboender/gitphp
 /**
  * Reads and unpacks the next 32 bit integer
  *
  * @return int integer
  * @param resource $handle file handle
  */
 public static function fuint32($handle)
 {
     return GitPHP_Pack::uint32(fread($handle, 4));
 }