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_LEX_STRTOD_H_ 9 #define UPB_LEX_STRTOD_H_ 10 11 // Must be last. 12 #include "upb/port/def.inc" 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 18 double _upb_NoLocaleStrtod(const char *str, char **endptr); 19 20 #ifdef __cplusplus 21 } /* extern "C" */ 22 #endif 23 24 #include "upb/port/undef.inc" 25 26 #endif /* UPB_LEX_STRTOD_H_ */ 27