blob: 5499bffa99379d9e82f32a4453fc8532a681d262 (
plain)
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
|
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <search.h>
#ifndef _SYMLIST_H_
#define _SYMLIST_H_
#include "cnfbuild.h"
#include "output.h"
struct symlist_el {
char *name;
struct boolexpr *def; // default value
struct boolexpr *vis; // visibility
struct boolexpr *dep; // direct dependency
struct boolexpr *rev_dep; // reverse dependency
};
struct symlist {
struct symlist_el *array;
size_t size, pos;
unsigned lastsym;
};
struct symlist *symlist_create();
void symlist_add(struct symlist *sl, char *name);
void symlist_closesym(struct symlist *sl);
unsigned symlist_adddummy(struct symlist *sl);
struct symlist_el *symlist_find(struct symlist *sl, char *name);
size_t symlist_id(struct symlist *sl, char *name);
void symlist_free(struct symlist *sl);
#endif /* _SYMLIST_H_ */
|