comparison src/xs_curve.c @ 554:b37c7f430c3f

Copyright header.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 26 Feb 2007 14:46:03 +0000
parents 425da926d310
children b6c7c26569cc
comparison
equal deleted inserted replaced
553:cf32867a71ed 554:b37c7f430c3f
1 /* 1 /*
2 * 2 XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS)
3 * 3
4 * 4 XSCurve, a custom Gtk+ spline widget for representing SIDPlay2/reSID
5 */ 5 filter curves in the configuration GUI. Implementation based heavily
6 on GtkCurve from Gtk+ 1.2.10 (C) 1997 David Mosberger.
7 Spline formula from reSID 0.16 (C) 2004 Dag Lem.
8
9 Programmed by Matti 'ccr' Hamalainen <ccr@tnsp.org>
10 (C) Copyright 2006-2007 Tecnic Software productions (TNSP)
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License along
23 with this program; if not, write to the Free Software Foundation, Inc.,
24 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
6 #include <stdlib.h> 26 #include <stdlib.h>
7 #include <string.h> 27 #include <string.h>
8 #include <math.h> 28 #include <math.h>
9 #include <stdio.h> 29 #include <stdio.h>
10 #include "xs_curve.h" 30 #include "xs_curve.h"