"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "grpn-1.1.7.4/funcs.h" of archive grpn-1.1.7.4.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 /*
2
3 Copyright (C) 2002 Paul Wilkins
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 */
20 /* funcs.h by Paul Willkins 3/20/97 */
21
22 #ifndef __FUNCS_H
23 #define __FUNCS_H
24
25 #include <gtk/gtk.h>
26
27 struct _FuncInfo {
28 char *name;
29 char *cmd;
30 char *help;
31 void (*CB)(GtkWidget *, gpointer);
32 void *data;
33 };
34 typedef struct _FuncInfo FuncInfo;
35
36
37 /* functions to manipulate the stack */
38
39 void readLine(char *);
40 void DupStack();
41 void PopStack();
42 void PushStack();
43
44 void PiStack();
45
46 void NegStack();
47 void InvStack();
48
49 void LogStack();
50 void TenxStack();
51
52 void ExpStack();
53 void LnStack();
54
55 void PowStack();
56 void NrootStack();
57
58 void RipStack();
59 void Db10Stack();
60 void Db20Stack();
61
62 void SqrStack();
63 void SqrtStack();
64
65 void SinStack();
66 void CosStack();
67 void TanStack();
68 void AsinStack();
69 void AcosStack();
70 void AtanStack();
71
72 void AddStack();
73 void SubStack();
74 void MulStack();
75 void DivStack();
76 void ModStack();
77
78 void SwapStack();
79 void CplxStack();
80 void MtrxStack();
81
82
83 #endif
84