projects
/
ccan
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ccanlint: check for incompatible license boilerplates within subfiles.
[ccan]
/
tools
/
ccanlint
/
licenses.h
diff --git
a/tools/ccanlint/licenses.h
b/tools/ccanlint/licenses.h
index 7b70bfac2109f2279c417738b49a1b3463abdd53..72b14d2516a47ba3faa030f0f937e9640c9ed5b1 100644
(file)
--- a/
tools/ccanlint/licenses.h
+++ b/
tools/ccanlint/licenses.h
@@
-26,6
+26,9
@@
struct license_info {
const char *clause[NUM_CLAUSES];
};
+/* Is [project license][file license] compatible? */
+bool license_compatible[LICENSE_UNKNOWN+1][LICENSE_UNKNOWN];
+
extern const struct license_info licenses[];
struct ccan_file;