Icons are changed
[gnuplot] / src / internal.h
1 /*
2  * $Id: internal.h,v 1.15.2.1 2008/09/02 21:12:59 sfeam Exp $
3  */
4
5 /* GNUPLOT - internal.h */
6
7 /*[
8  * Copyright 1999, 2004   Thomas Williams, Colin Kelley
9  *
10  * Permission to use, copy, and distribute this software and its
11  * documentation for any purpose with or without fee is hereby granted,
12  * provided that the above copyright notice appear in all copies and
13  * that both that copyright notice and this permission notice appear
14  * in supporting documentation.
15  *
16  * Permission to modify the software is granted, but not the right to
17  * distribute the complete modified source code.  Modifications are to
18  * be distributed as patches to the released version.  Permission to
19  * distribute binaries produced by compiling modified sources is granted,
20  * provided you
21  *   1. distribute the corresponding source modifications from the
22  *    released version in the form of a patch file along with the binaries,
23  *   2. add special version identification to distinguish your version
24  *    in addition to the base release version number,
25  *   3. provide your name and address as the primary contact for the
26  *    support of your modified version, and
27  *   4. retain our contact information in regard to use of the base
28  *    software.
29  * Permission to distribute the released version of the source code along
30  * with corresponding source modifications in the form of a patch file is
31  * granted with same provisions 2 through 4 for binary distributions.
32  *
33  * This software is provided "as is" without express or implied warranty
34  * to the extent permitted by applicable law.
35 ]*/
36
37 #ifndef GNUPLOT_INTERNAL_H
38 # define GNUPLOT_INTERNAL_H
39
40 /* #if... / #include / #define collection: */
41
42 #include "syscfg.h"
43 #include "gp_types.h"
44 #include "eval.h"
45
46 /* Prototypes from file "internal.c" */
47
48 /* the basic operators of our stack machine for function evaluation: */
49 void f_push __PROTO((union argument *x));
50 void f_pushc __PROTO((union argument *x));
51 void f_pushd1 __PROTO((union argument *x));
52 void f_pushd2 __PROTO((union argument *x));
53 void f_pushd __PROTO((union argument *x));
54 void f_call __PROTO((union argument *x));
55 void f_calln __PROTO((union argument *x));
56 void f_lnot __PROTO((union argument *x));
57 void f_bnot __PROTO((union argument *x));
58 void f_lor __PROTO((union argument *x));
59 void f_land __PROTO((union argument *x));
60 void f_bor __PROTO((union argument *x));
61 void f_xor __PROTO((union argument *x));
62 void f_band __PROTO((union argument *x));
63 void f_uminus __PROTO((union argument *x));
64 void f_eq __PROTO((union argument *x));
65 void f_ne __PROTO((union argument *x));
66 void f_gt __PROTO((union argument *x));
67 void f_lt __PROTO((union argument *x));
68 void f_ge __PROTO((union argument *x));
69 void f_le __PROTO((union argument *x));
70 void f_plus __PROTO((union argument *x));
71 void f_minus __PROTO((union argument *x));
72 void f_mult __PROTO((union argument *x));
73 void f_div __PROTO((union argument *x));
74 void f_mod __PROTO((union argument *x));
75 void f_power __PROTO((union argument *x));
76 void f_factorial __PROTO((union argument *x));
77
78 #ifdef GP_STRING_VARS
79 void f_concatenate __PROTO((union argument *x));
80 void f_eqs __PROTO((union argument *x));
81 void f_nes __PROTO((union argument *x));
82 void f_gprintf __PROTO((union argument *x));
83 void f_range __PROTO((union argument *x));
84 void f_sprintf __PROTO((union argument *x));
85 void f_strlen __PROTO((union argument *x));
86 void f_strstrt __PROTO((union argument *x));
87 void f_system __PROTO((union argument *x));
88 void f_words __PROTO((union argument *x));
89 void f_strftime __PROTO((union argument *x));
90 void f_strptime __PROTO((union argument *x));
91 #endif
92
93 #endif /* GNUPLOT_INTERNAL_H */