Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:25:24

0001 // Protocol Buffers - Google's data interchange format
0002 // Copyright 2024 Google LLC.  All rights reserved.
0003 //
0004 // Use of this source code is governed by a BSD-style
0005 // license that can be found in the LICENSE file or at
0006 // https://developers.google.com/open-source/licenses/bsd
0007 
0008 #ifndef UPB_TEXT_OPTIONS_H_
0009 #define UPB_TEXT_OPTIONS_H_
0010 
0011 enum {
0012   // When set, prints everything on a single line.
0013   UPB_TXTENC_SINGLELINE = 1,
0014 
0015   // When set, unknown fields are not printed.
0016   UPB_TXTENC_SKIPUNKNOWN = 2,
0017 
0018   // When set, maps are *not* sorted (this avoids allocating tmp mem).
0019   UPB_TXTENC_NOSORT = 4
0020 };
0021 
0022 #endif  // UPB_TEXT_OPTIONS_H_