/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include #include #ifdef __cplusplus extern "C" { #endif size_t glean_thrift_encode_zigzag(int64_t value, uint8_t* buffer); size_t glean_thrift_encode_varint(uint64_t value, uint8_t* buffer); #ifdef __cplusplus } #endif