1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-11-23 00:13:09 +02:00

gencat/pdf.c: add section titles

This commit is contained in:
Werner Almesberger 2012-07-11 12:25:46 -03:00
parent e1d613a20b
commit b3113fca04

View File

@ -71,6 +71,9 @@ static struct format {
static int total, done = 0; static int total, done = 0;
/* ----- Utility functions ------------------------------------------------- */
static char *sanitize_name(const char *s) static char *sanitize_name(const char *s)
{ {
char *t, *tmp; char *t, *tmp;
@ -102,6 +105,9 @@ static void ps_string(FILE *file, const char *s)
} }
/* ----- Alphabetic index -------------------------------------------------- */
static void collect_names(const struct node *node, const char ***idx, int *n) static void collect_names(const struct node *node, const char ***idx, int *n)
{ {
const struct name *name; const struct name *name;
@ -181,6 +187,9 @@ static void make_index(FILE *file, const struct node *node)
} }
/* ----- Overlay and table of contents ------------------------------------- */
static int children(const struct node *node) static int children(const struct node *node)
{ {
int n = 0; int n = 0;
@ -266,6 +275,9 @@ static void print_comment(FILE *file, const struct line *comment)
} }
/* ----- Component conversion ---------------------------------------------- */
static void cat(FILE *out, const char *name) static void cat(FILE *out, const char *name)
{ {
FILE *in; FILE *in;
@ -343,6 +355,9 @@ static void convert_tree(const struct node *node, FILE *out)
} }
/* ----- Setup and PDF generation ------------------------------------------ */
static int count_tree(const struct node *node) static int count_tree(const struct node *node)
{ {
int sum = 0; int sum = 0;