Switch year arg from int to string

This effectively allows for arbitrary copyright
years. For instance, 2018-2019.
This commit is contained in:
alex
2019-01-07 14:10:08 +01:00
parent b4fa55f138
commit f6c8b89ee5
4 changed files with 38 additions and 2 deletions

12
testdata/multiyear_file.c vendored Normal file
View File

@@ -0,0 +1,12 @@
/*
* Copyright (c) 2015-2017,2019 Google LLC All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
#include <stdio.h>
int main() {
printf("Hello world\n");
return 0;
}