]> git.ozlabs.org Git - ccan/blobdiff - tools/ccanlint/ccanlint.h
Broaden use of doc_extract code, put in ccanlint, and fix ccanlint
[ccan] / tools / ccanlint / ccanlint.h
index 51f555ecfb059a437a598108b367e1963c13e10b..d536d6bfefae290d5bf1f425b8c07ac23c50a6f0 100644 (file)
@@ -1,7 +1,8 @@
 #ifndef CCAN_LINT_H
 #define CCAN_LINT_H
-#include <list/list.h>
+#include <ccan/list/list.h>
 #include <stdbool.h>
+#include "../doc_extract.h"
 
 struct manifest {
        char *basename;
@@ -54,11 +55,16 @@ struct ccan_file {
 
        unsigned int num_lines;
        char **lines;
+
+       struct list_head *doc_sections;
 };
 
 /* Use this rather than accessing f->lines directly: loads on demand. */
 char **get_ccan_file_lines(struct ccan_file *f);
 
+/* Similarly for ->doc_sections */
+struct list_head *get_ccan_file_docs(struct ccan_file *f);
+
 /* Call the reporting on every line in the file.  sofar contains
  * previous results. */
 char *report_on_lines(struct list_head *files,