19 lines · c
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef YAML2MACHOCOREFILE_UTILITY_H10#define YAML2MACHOCOREFILE_UTILITY_H11 12#include "CoreSpec.h"13#include <vector>14 15void add_uint64(std::vector<uint8_t> &buf, uint64_t val);16void add_uint32(std::vector<uint8_t> &buf, uint32_t val);17 18#endif19