1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-02 23:03:17 +03:00
eda-tools/genkicat/tree.h
Werner Almesberger 48434c859d gencat clashes with an existing tool. rename to genkicat (1/2)
The "gencat" with older rights to the name is from libc, no less.
I wonder how I missed that :-(
2012-07-12 20:09:38 -03:00

44 lines
910 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;
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 */