blob: 3ce5ab59e9958a3b22adcd29254ab6d1c49ec993 [file] [log] [blame]
nethercote5912c812004-02-15 15:38:08 +00001/* This file is part of hp2ps, a graph drawer for memory profiles.
2 Copyright (C) 2002 The University Court of the University of Glasgow.
3 This program is governed by the license contained in the file LICENSE. */
4
nethercotec9f36922004-02-14 16:40:02 +00005#ifndef DIMENSIONS_H
6#define DIMENSIONS_H
7
8extern floatish borderheight;
9extern floatish borderwidth;
10extern floatish borderspace;
11extern floatish borderthick;
12
13extern floatish titleheight;
14extern floatish titlewidth;
15extern floatish titletextspace;
16
17extern floatish graphx0;
18extern floatish graphy0;
19
20extern floatish graphheight;
21extern floatish graphwidth;
22
23void Dimensions PROTO((void));
24floatish StringSize PROTO((char *));
25
26#endif /* DIMENSIONS_H */