]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/ccanlint.h
ccanlint: make a license enum, and parse the license string to set it.
[ccan] / tools / ccanlint / ccanlint.h
index 23b6492dff68759576fd593f0a74b3e4850cbf32..b9965f75a5852364ef923ee98ca3b2e792745ceb 100644 (file)
    4 == Describe every action. */
 extern int verbose;
 
    4 == Describe every action. */
 extern int verbose;
 
+enum license {
+       LICENSE_LGPLv2_PLUS,
+       LICENSE_LGPLv2,
+       LICENSE_LGPLv3,
+       LICENSE_LGPL,
+       LICENSE_GPLv2_PLUS,
+       LICENSE_GPLv2,
+       LICENSE_GPLv3,
+       LICENSE_GPL,
+       LICENSE_BSD,
+       LICENSE_MIT,
+       LICENSE_PUBLIC_DOMAIN,
+       LICENSE_UNKNOWN
+};
+
 struct manifest {
        char *dir;
        /* The module name, ie. final element of dir name */
 struct manifest {
        char *dir;
        /* The module name, ie. final element of dir name */
@@ -43,6 +58,9 @@ struct manifest {
 
        /* From tests/check_depends_exist.c */
        struct list_head deps;
 
        /* From tests/check_depends_exist.c */
        struct list_head deps;
+
+       /* From tests/license_exists.c */
+       enum license license;
 };
 
 /* Get the manifest for a given directory. */
 };
 
 /* Get the manifest for a given directory. */