]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/licenses.h
ccanlint: check for incompatible license boilerplates within subfiles.
[ccan] / tools / ccanlint / licenses.h
index 7b70bfac2109f2279c417738b49a1b3463abdd53..72b14d2516a47ba3faa030f0f937e9640c9ed5b1 100644 (file)
@@ -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;