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.
33 lines
796 B
33 lines
796 B
1 year ago
|
// Protocol Buffers - Google's data interchange format
|
||
|
// Copyright 2023 Google LLC. All rights reserved.
|
||
|
//
|
||
1 year ago
|
// 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
|
||
1 year ago
|
|
||
|
#ifndef UPB_REFLECTION_INTERNAL_STRDUP2_H_
|
||
|
#define UPB_REFLECTION_INTERNAL_STRDUP2_H_
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
1 year ago
|
#include "upb/mem/arena.h"
|
||
1 year ago
|
|
||
|
// Must be last.
|
||
1 year ago
|
#include "upb/port/def.inc"
|
||
1 year ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// Variant that works with a length-delimited rather than NULL-delimited string,
|
||
|
// as supported by strtable.
|
||
|
char* upb_strdup2(const char* s, size_t len, upb_Arena* a);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
1 year ago
|
#include "upb/port/undef.inc"
|
||
1 year ago
|
|
||
|
#endif /* UPB_REFLECTION_INTERNAL_STRDUP2_H_ */
|