diff options
author | Wim <wim@42.be> | 2022-01-31 00:27:37 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2022-03-20 14:57:48 +0100 |
commit | e3cafeaf9292f67459ff1d186f68283bfaedf2ae (patch) | |
tree | b69c39620aa91dba695b3b935c6651c0fb37ce75 /vendor/modernc.org/cc/v3/enum.go | |
parent | e7b193788a56ee7cdb02a87a9db0ad6724ef66d5 (diff) | |
download | matterbridge-msglm-e3cafeaf9292f67459ff1d186f68283bfaedf2ae.tar.gz matterbridge-msglm-e3cafeaf9292f67459ff1d186f68283bfaedf2ae.tar.bz2 matterbridge-msglm-e3cafeaf9292f67459ff1d186f68283bfaedf2ae.zip |
Add dependencies/vendor (whatsapp)
Diffstat (limited to 'vendor/modernc.org/cc/v3/enum.go')
-rw-r--r-- | vendor/modernc.org/cc/v3/enum.go | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/vendor/modernc.org/cc/v3/enum.go b/vendor/modernc.org/cc/v3/enum.go new file mode 100644 index 00000000..f93c008d --- /dev/null +++ b/vendor/modernc.org/cc/v3/enum.go @@ -0,0 +1,84 @@ +// Copyright 2019 The CC Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package cc // import "modernc.org/cc/v3" + +// Values of Kind +const ( + Invalid Kind = iota + + Array // T[] + Bool // _Bool + Char // char + ComplexChar // complex char + ComplexDouble // complex double + ComplexFloat // complex float + ComplexInt // complex int + ComplexLong // complex long + ComplexLongDouble // complex long double + ComplexLongLong // complex long long + ComplexShort // complex short + ComplexUInt // complex unsigned + ComplexULong // complex unsigned long + ComplexULongLong // complex unsigned long long + ComplexUShort // complex shor + Decimal128 // _Decimal128 + Decimal32 // _Decimal32 + Decimal64 // _Decimal64 + Double // double + Enum // enum + Float // float + Float128 // _Float128 + Float32 // _Float32 + Float32x // _Float32x + Float64 // _Float64 + Float64x // _Float64x + Function // function + Int // int + Int8 // __int8 + Int16 // __int16 + Int32 // __int32 + Int64 // __int64 + Int128 // __int128 + Long // long + LongDouble // long double + LongLong // long long + Ptr // pointer + SChar // signed char + Short // short + Struct // struct + TypedefName // typedefname + UChar // unsigned char + UInt // unsigned + UInt8 // unsigned __int8 + UInt16 // unsigned __int16 + UInt32 // unsigned __int32 + UInt64 // unsigned __int64 + UInt128 // unsigned __int128 + ULong // unsigned long + ULongLong // unsigned long long + UShort // unsigned short + Union // union + Void // void + Vector // vector + + typeofExpr + typeofType + + maxKind +) + +// Values of Linkage +const ( + None Linkage = iota + Internal + External +) + +// Values of StorageClass +const ( + Static StorageClass = iota + Automatic + Allocated +) |