WriteLicenseHeader writes a license header into a writer with C-style comments
(w io.Writer, component ComponentDefinition, abstract string, includeVersion bool)
| 139 | |
| 140 | // WriteLicenseHeader writes a license header into a writer with C-style comments |
| 141 | func WriteLicenseHeader (w io.Writer, component ComponentDefinition, abstract string, includeVersion bool) { |
| 142 | writeLicenseHeaderEx (w, component, abstract, includeVersion, "/*", "*/"); |
| 143 | } |
| 144 | |
| 145 | // writeLicenseHeaderEx writes a license header into a writer. |
| 146 | func writeLicenseHeaderEx (w io.Writer, component ComponentDefinition, abstract string, includeVersion bool, CommandStart string, CommandEnd string) { |
no test coverage detected