1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-03 02:01:40 +03:00
eda-tools/genex/comp.h
Werner Almesberger 1b7ace9043 genex: added reading of files containing supplemental descriptions
Each entry has this structure:

component: text
  more text

  more text on a new line
next component: ...

If a component has multiple entries, a line break is placed between
them. Component names are case-insensitive.
2012-04-17 05:54:08 -03:00

44 lines
1.0 KiB
C

/*
* comp.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 COMP_H
#define COMP_H
struct line {
char *s;
struct line *next;
};
struct node {
const char *name;
const char *lib; /* NULL if intermediate node */
const char *canon; /* canonical name of component */
int units; /* number of units; undefined if intermediate */
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(struct node *node,
const char *(*find_lib)(const char *sym, const char **canon,
int *units));
void dump_tree(void);
#endif /* !COMP_H */