blob: b49448c4b98dc849e0f536ed962a32a0fd5021f2 [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 fragments
const Const = `
{{- define "ConstDeclaration" }}
{{range .DocComments}}
//{{ . }}
{{- end}}
{{- if .Extern }}
extern {{ .Decorator }} {{ .Type.LLDecl }} {{ .Name }};
{{- else }}
{{ .Decorator }} {{ .Type.LLDecl }} {{ .Name }} = {{ .Value }};
{{- end }}
{{- end }}
{{- define "ConstDefinition" }}
{{- if .Extern }}
{{ .Decorator }} {{ .Type.LLDecl }} {{ .Name }} = {{ .Value }};
{{- end }}
{{- end }}
`