| 74 | } |
| 75 | |
| 76 | static struct cbfile *findfile(const char *filename) |
| 77 | { |
| 78 | struct cbfile *f; |
| 79 | for (f = firstfile(); f; f = nextfile(f)) { |
| 80 | if (strcmp(filename, f->filename) == 0) |
| 81 | return f; |
| 82 | } |
| 83 | return NULL; |
| 84 | } |
| 85 | |
| 86 | static int cbfs_module_init(void) |
| 87 | { |
no test coverage detected