1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
* file/file.h - Open and read a file
*
* Written 2016 by Werner Almesberger
* Copyright 2016 by Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef FILE_FILE_H
#define FILE_FILE_H
#include <stdbool.h>
#include <stdio.h>
struct file {
FILE *file; /* NULL if using a version control system */
void *vcs; /* VCS descriptor or NULL */
const char *name; /* name/designator given to file_open */
unsigned lineno;
const struct file *related; /* NULL if not related to anything */
};
void *file_oid(const struct file *file);
bool file_oid_eq(const void *a, const void *b);
bool file_cat(const struct file *file, void *user, const char *line);
char *file_graft_relative(const char *base, const char *name);
bool file_open_vcs(struct file *file, const char *name);
bool file_open(struct file *file, const char *name,
const struct file *related);
bool file_search(struct file *file, const char *name,
const char **search, unsigned n_search, const struct file *related);
bool file_open_revision(struct file *file, const char *rev, const char *name,
const struct file *related);
bool file_read(struct file *file,
bool (*parse)(const struct file *file, void *user, const char *line),
void *user);
void file_close(struct file *file);
void file_cleanup(void);
#endif /* !FILE_FILE_H */
|