File: globals.h

package info (click to toggle)
robodoc 4.0.18-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 924 kB
  • ctags: 669
  • sloc: ansic: 8,386; xml: 953; sh: 335; makefile: 144; perl: 68
file content (35 lines) | stat: -rw-r--r-- 931 bytes parent folder | download
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
#ifndef ROBODOC_GLOBALS_H
#define ROBODOC_GLOBALS_H

#include <stdio.h>
#include "robodoc.h"

/* TODO  Try to get rid of as many as these as possible. */

#define MAX_LINE_LEN 512
extern char        *source_file;        /* DCD */

/* extern char *whoami; */
extern char        *document_title;

/* extern T_RB_DocType output_mode; */
/* extern long course_of_action; */
/* extern int line_number; */
/* extern char line_buffer[MAX_LINE_LEN]; */
extern int          tab_size;
extern char         doc_base[1024];     /* PetteriK */
void                RB_Close_The_Shop( void );


/* These are really necessary */

extern unsigned int link_index_size;
extern struct RB_link **link_index;
extern char        *current_file;
extern T_RB_DocType output_mode;
extern long         course_of_action;
extern int          line_number;
extern char         line_buffer[MAX_LINE_LEN];
extern char        *whoami;

#endif /* ROBODOC_GLOBALS_H */