Blame src/internal.h

Packit 0986c0
/*
Packit 0986c0
 * $Id: internal.h,v 1.26 2016/02/07 22:15:36 sfeam Exp $
Packit 0986c0
 */
Packit 0986c0
Packit 0986c0
/* GNUPLOT - internal.h */
Packit 0986c0
Packit 0986c0
/*[
Packit 0986c0
 * Copyright 1999, 2004   Thomas Williams, Colin Kelley
Packit 0986c0
 *
Packit 0986c0
 * Permission to use, copy, and distribute this software and its
Packit 0986c0
 * documentation for any purpose with or without fee is hereby granted,
Packit 0986c0
 * provided that the above copyright notice appear in all copies and
Packit 0986c0
 * that both that copyright notice and this permission notice appear
Packit 0986c0
 * in supporting documentation.
Packit 0986c0
 *
Packit 0986c0
 * Permission to modify the software is granted, but not the right to
Packit 0986c0
 * distribute the complete modified source code.  Modifications are to
Packit 0986c0
 * be distributed as patches to the released version.  Permission to
Packit 0986c0
 * distribute binaries produced by compiling modified sources is granted,
Packit 0986c0
 * provided you
Packit 0986c0
 *   1. distribute the corresponding source modifications from the
Packit 0986c0
 *    released version in the form of a patch file along with the binaries,
Packit 0986c0
 *   2. add special version identification to distinguish your version
Packit 0986c0
 *    in addition to the base release version number,
Packit 0986c0
 *   3. provide your name and address as the primary contact for the
Packit 0986c0
 *    support of your modified version, and
Packit 0986c0
 *   4. retain our contact information in regard to use of the base
Packit 0986c0
 *    software.
Packit 0986c0
 * Permission to distribute the released version of the source code along
Packit 0986c0
 * with corresponding source modifications in the form of a patch file is
Packit 0986c0
 * granted with same provisions 2 through 4 for binary distributions.
Packit 0986c0
 *
Packit 0986c0
 * This software is provided "as is" without express or implied warranty
Packit 0986c0
 * to the extent permitted by applicable law.
Packit 0986c0
]*/
Packit 0986c0
Packit 0986c0
#ifndef GNUPLOT_INTERNAL_H
Packit 0986c0
# define GNUPLOT_INTERNAL_H
Packit 0986c0
Packit 0986c0
/* #if... / #include / #define collection: */
Packit 0986c0
Packit 0986c0
#include "syscfg.h"
Packit 0986c0
#include "gp_types.h"
Packit 0986c0
#include "eval.h"
Packit 0986c0
Packit 0986c0
/* Prototypes from file "internal.c" */
Packit 0986c0
void eval_reset_after_error __PROTO((void));
Packit 0986c0
Packit 0986c0
/* the basic operators of our stack machine for function evaluation: */
Packit 0986c0
void f_push __PROTO((union argument *x));
Packit 0986c0
void f_pushc __PROTO((union argument *x));
Packit 0986c0
void f_pushd1 __PROTO((union argument *x));
Packit 0986c0
void f_pushd2 __PROTO((union argument *x));
Packit 0986c0
void f_pushd __PROTO((union argument *x));
Packit 0986c0
void f_pop __PROTO((union argument *x));
Packit 0986c0
void f_call __PROTO((union argument *x));
Packit 0986c0
void f_calln __PROTO((union argument *x));
Packit 0986c0
void f_sum __PROTO((union argument *x));
Packit 0986c0
void f_lnot __PROTO((union argument *x));
Packit 0986c0
void f_bnot __PROTO((union argument *x));
Packit 0986c0
void f_lor __PROTO((union argument *x));
Packit 0986c0
void f_land __PROTO((union argument *x));
Packit 0986c0
void f_bor __PROTO((union argument *x));
Packit 0986c0
void f_xor __PROTO((union argument *x));
Packit 0986c0
void f_band __PROTO((union argument *x));
Packit 0986c0
void f_uminus __PROTO((union argument *x));
Packit 0986c0
void f_eq __PROTO((union argument *x));
Packit 0986c0
void f_ne __PROTO((union argument *x));
Packit 0986c0
void f_gt __PROTO((union argument *x));
Packit 0986c0
void f_lt __PROTO((union argument *x));
Packit 0986c0
void f_ge __PROTO((union argument *x));
Packit 0986c0
void f_le __PROTO((union argument *x));
Packit 0986c0
void f_leftshift __PROTO((union argument *x));
Packit 0986c0
void f_rightshift __PROTO((union argument *x));
Packit 0986c0
void f_plus __PROTO((union argument *x));
Packit 0986c0
void f_minus __PROTO((union argument *x));
Packit 0986c0
void f_mult __PROTO((union argument *x));
Packit 0986c0
void f_div __PROTO((union argument *x));
Packit 0986c0
void f_mod __PROTO((union argument *x));
Packit 0986c0
void f_power __PROTO((union argument *x));
Packit 0986c0
void f_factorial __PROTO((union argument *x));
Packit 0986c0
Packit 0986c0
void f_concatenate __PROTO((union argument *x));
Packit 0986c0
void f_eqs __PROTO((union argument *x));
Packit 0986c0
void f_nes __PROTO((union argument *x));
Packit 0986c0
void f_gprintf __PROTO((union argument *x));
Packit 0986c0
void f_range __PROTO((union argument *x));
Packit 0986c0
void f_index __PROTO((union argument *x));
Packit 0986c0
void f_cardinality __PROTO((union argument *x));
Packit 0986c0
void f_sprintf __PROTO((union argument *x));
Packit 0986c0
void f_strlen __PROTO((union argument *x));
Packit 0986c0
void f_strstrt __PROTO((union argument *x));
Packit 0986c0
void f_system __PROTO((union argument *x));
Packit 0986c0
void f_word __PROTO((union argument *x));
Packit 0986c0
void f_words __PROTO((union argument *x));
Packit 0986c0
void f_strftime __PROTO((union argument *x));
Packit 0986c0
void f_strptime __PROTO((union argument *x));
Packit 0986c0
void f_time __PROTO((union argument *x));
Packit 0986c0
void f_assign __PROTO((union argument *x));
Packit 0986c0
void f_value __PROTO((union argument *x));
Packit 0986c0
Packit 0986c0
#endif /* GNUPLOT_INTERNAL_H */