blob: 674843a65d1de20c3afe1531d37eab581b5014c9 [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 UTILITIES_H
6#define UTILITIES_H
7
8char* Basename PROTO((char *));
9void DropSuffix PROTO((char *, char *));
10FILE* OpenFile PROTO((char *, char *));
11void CommaPrint PROTO((FILE *, intish));
12char *copystring PROTO((char *));
13char *copystring2 PROTO((char *, char *));
nethercotea0b77912004-06-02 20:43:24 +000014void *xmalloc PROTO((size_t));
15void *xrealloc PROTO((void *, size_t));
nethercotec9f36922004-02-14 16:40:02 +000016
17#endif /* UTILITIES_H */