1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-02 23:19:30 +03:00
eda-tools/genkicat/tree.h
Werner Almesberger 993ea811e5 genkicat/: detect URLs in comments and add PDF hyperlink
We recognize http, https, ftp, and file.
2012-07-14 21:51:28 -03:00

45 lines
936 B
C

/*
* tree.h - Component hierarchy
*
* Copyright 2012 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 TREE_H
#define TREE_H
#include "libs.h"
struct line {
char *s;
int url; /* 1 if URL */
struct line *next;
};
struct node {
const char *name;
const struct entry *e; /* NULL if intermediate node */
struct line *comment; /* NULL if intermediate node */
int indent; /* level of indentation (characters) */
struct node *parent;
struct node *child;
struct node *next;
};
extern struct node *tree;
void read_tree(FILE *file);
void read_desc(FILE *file);
void set_libs(const struct lib *lib, struct node *node);
void dump_tree(void);
void dump_comp(void);
#endif /* !TREE_H */