blob: c7c8e90e2e7ea7aed9b50bccd370321e649346d6 [file] [log] [blame]
Doug Zongker512536a2010-02-17 16:11:44 -08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _BUILD_TOOLS_APPLYPATCH_UTILS_H
18#define _BUILD_TOOLS_APPLYPATCH_UTILS_H
19
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -070020#include <inttypes.h>
Doug Zongker512536a2010-02-17 16:11:44 -080021#include <stdio.h>
22
23// Read and write little-endian values of various sizes.
24
25void Write4(int value, FILE* f);
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -070026void Write8(int64_t value, FILE* f);
Tianjie Xuaced5d92016-10-12 10:55:04 -070027int Read2(const void* p);
28int Read4(const void* p);
29int64_t Read8(const void* p);
Doug Zongker512536a2010-02-17 16:11:44 -080030
31#endif // _BUILD_TOOLS_APPLYPATCH_UTILS_H