1 // Copyright 2019 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "testing/fuzzers/pdfium_fuzzer_util.h" 6 GetInteger(const uint8_t * data)7int GetInteger(const uint8_t* data) { 8 return data[0] | (data[1] << 8) | (data[2] << 16) | (data[3] << 24); 9 } 10