| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include "ccanlint.h"
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <unistd.h>
- #include <limits.h>
- #include <errno.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <err.h>
- #include <string/string.h>
- #include <talloc/talloc.h>
- #include <noerr/noerr.h>
- static void *check_has_main_header(struct manifest *m)
- {
- struct ccan_file *f;
- list_for_each(&m->h_files, f, list) {
- if (strstarts(f->name, m->basename)
- && strlen(f->name) == strlen(m->basename) + 2)
- return NULL;
- }
- return m;
- }
- static const char *describe_has_main_header(struct manifest *m,
- void *check_result)
- {
- return talloc_asprintf(m,
- "You have no %s/%s.h header file.\n\n"
- "CCAN modules have a name, the same as the directory name. They're\n"
- "expected to have an interface in the header of the same name.\n",
- m->basename, m->basename);
- }
- struct ccanlint has_main_header = {
- .name = "No main header file",
- .check = check_has_main_header,
- .describe = describe_has_main_header,
- };
|