sn-tex: Fix indentation (remove tabs).
[sort-networks.git] / src / histogram.h
1 /**
2  * libsortnetwork - src/histrogram.h
3  * Copyright (C) 2011  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <ff at octo.it>
20  **/
21
22 #ifndef HISTOGRAM_H
23 #define HISTOGRAM_H 1
24
25 struct histogram_s;
26 typedef struct histogram_s histogram_t;
27
28 histogram_t *hist_create (void);
29 void hist_destroy (histogram_t *h);
30
31 int hist_account (histogram_t *h, int rating);
32 int hist_print (histogram_t *h);
33
34 #endif /* HISTOGRAM_H */