1 // Protocol Buffers - Google's data interchange format 2 // Copyright 2023 Google LLC. All rights reserved. 3 // 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file or at 6 // https://developers.google.com/open-source/licenses/bsd 7 8 #ifndef UPB_REFLECTION_EXTENSION_RANGE_INTERNAL_H_ 9 #define UPB_REFLECTION_EXTENSION_RANGE_INTERNAL_H_ 10 11 #include "upb/reflection/extension_range.h" 12 13 // Must be last. 14 #include "upb/port/def.inc" 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif 19 20 upb_ExtensionRange* _upb_ExtensionRange_At(const upb_ExtensionRange* r, int i); 21 22 // Allocate and initialize an array of |n| extension ranges owned by |m|. 23 upb_ExtensionRange* _upb_ExtensionRanges_New( 24 upb_DefBuilder* ctx, int n, 25 const UPB_DESC(DescriptorProto_ExtensionRange*) const* protos, 26 const UPB_DESC(FeatureSet*) parent_features, const upb_MessageDef* m); 27 28 #ifdef __cplusplus 29 } /* extern "C" */ 30 #endif 31 32 #include "upb/port/undef.inc" 33 34 #endif /* UPB_REFLECTION_EXTENSION_RANGE_INTERNAL_H_ */ 35