Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
// Protocol Buffers - Google's data interchange format |
|
// Copyright 2023 Google LLC. All rights reserved. |
|
// |
|
// Use of this source code is governed by a BSD-style |
|
// license that can be found in the LICENSE file or at |
|
// https://developers.google.com/open-source/licenses/bsd |
|
|
|
#ifndef UPB_MINI_TABLE_ENUM_H_ |
|
#define UPB_MINI_TABLE_ENUM_H_ |
|
|
|
#include "upb/mini_table/internal/enum.h" |
|
|
|
// Must be last |
|
#include "upb/port/def.inc" |
|
|
|
typedef struct upb_MiniTableEnum upb_MiniTableEnum; |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
// Validates enum value against range defined by enum mini table. |
|
UPB_INLINE bool upb_MiniTableEnum_CheckValue(const struct upb_MiniTableEnum* e, |
|
uint32_t val) { |
|
_kUpb_FastEnumCheck_Status status = _upb_MiniTable_CheckEnumValueFast(e, val); |
|
if (UPB_UNLIKELY(status == _kUpb_FastEnumCheck_CannotCheckFast)) { |
|
return _upb_MiniTable_CheckEnumValueSlow(e, val); |
|
} |
|
return status == _kUpb_FastEnumCheck_ValueIsInEnum ? true : false; |
|
} |
|
|
|
#ifdef __cplusplus |
|
} /* extern "C" */ |
|
#endif |
|
|
|
#include "upb/port/undef.inc" |
|
|
|
#endif /* UPB_MINI_TABLE_ENUM_H_ */
|
|
|