blob: e37f4c4fa188a9a3ab538f2e7fb6bde996a9a22d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* \brief graph layout functions
*
* Authors:
* Tim Dwyer <tgdwyer@gmail.com>
*
* Copyright (C) 2005 Authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifndef SEEN_GRAPHLAYOUT_H
#define SEEN_GRAPHLAYOUT_H
#include "util/glib-list-iterators.h"
void graphlayout(GSList const *const items);
#endif // SEEN_GRAPHLAYOUT_H
|