Blame src/standard.h

Packit 0986c0
/*
Packit 0986c0
 * $Id: standard.h,v 1.11 2006/07/14 00:30:41 sfeam Exp $
Packit 0986c0
 */
Packit 0986c0
Packit 0986c0
/* GNUPLOT - standard.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_STANDARD_H
Packit 0986c0
# define GNUPLOT_STANDARD_H
Packit 0986c0
Packit 0986c0
/* #if... / #include / #define collection: */
Packit 0986c0
Packit 0986c0
#include "syscfg.h"
Packit 0986c0
#include "eval.h"
Packit 0986c0
Packit 0986c0
/* Type definitions */
Packit 0986c0
Packit 0986c0
/* Variables of standard.c needed by other modules: */
Packit 0986c0
Packit 0986c0
/* Prototypes of functions exported by standard.c */
Packit 0986c0
Packit 0986c0
/* These are the more 'usual' functions built into the stack machine */
Packit 0986c0
void f_real __PROTO((union argument *x));
Packit 0986c0
void f_imag __PROTO((union argument *x));
Packit 0986c0
void f_int __PROTO((union argument *x));
Packit 0986c0
void f_arg __PROTO((union argument *x));
Packit 0986c0
void f_conjg __PROTO((union argument *x));
Packit 0986c0
void f_sin __PROTO((union argument *x));
Packit 0986c0
void f_cos __PROTO((union argument *x));
Packit 0986c0
void f_tan __PROTO((union argument *x));
Packit 0986c0
void f_asin __PROTO((union argument *x));
Packit 0986c0
void f_acos __PROTO((union argument *x));
Packit 0986c0
void f_atan __PROTO((union argument *x));
Packit 0986c0
void f_atan2 __PROTO((union argument *x));
Packit 0986c0
void f_sinh __PROTO((union argument *x));
Packit 0986c0
void f_cosh __PROTO((union argument *x));
Packit 0986c0
void f_tanh __PROTO((union argument *x));
Packit 0986c0
void f_asinh __PROTO((union argument *x));
Packit 0986c0
void f_acosh __PROTO((union argument *x));
Packit 0986c0
void f_atanh __PROTO((union argument *x));
Packit 0986c0
void f_ellip_first __PROTO((union argument *x));
Packit 0986c0
void f_ellip_second __PROTO((union argument *x));
Packit 0986c0
void f_ellip_third __PROTO((union argument *x));
Packit 0986c0
void f_void __PROTO((union argument *x));
Packit 0986c0
void f_abs __PROTO((union argument *x));
Packit 0986c0
void f_sgn __PROTO((union argument *x));
Packit 0986c0
void f_sqrt __PROTO((union argument *x));
Packit 0986c0
void f_exp __PROTO((union argument *x));
Packit 0986c0
void f_log10 __PROTO((union argument *x));
Packit 0986c0
void f_log __PROTO((union argument *x));
Packit 0986c0
void f_floor __PROTO((union argument *x));
Packit 0986c0
void f_ceil __PROTO((union argument *x));
Packit 0986c0
void f_besj0 __PROTO((union argument *x));
Packit 0986c0
void f_besj1 __PROTO((union argument *x));
Packit 0986c0
void f_besy0 __PROTO((union argument *x));
Packit 0986c0
void f_besy1 __PROTO((union argument *x));
Packit 0986c0
void f_exists __PROTO((union argument *x));   /* exists("foo") */
Packit 0986c0
Packit 0986c0
void f_tmsec __PROTO((union argument *x));
Packit 0986c0
void f_tmmin __PROTO((union argument *x));
Packit 0986c0
void f_tmhour __PROTO((union argument *x));
Packit 0986c0
void f_tmmday __PROTO((union argument *x));
Packit 0986c0
void f_tmmon __PROTO((union argument *x));
Packit 0986c0
void f_tmyear __PROTO((union argument *x));
Packit 0986c0
void f_tmwday __PROTO((union argument *x));
Packit 0986c0
void f_tmyday __PROTO((union argument *x));
Packit 0986c0
Packit 0986c0
#endif /* GNUPLOT_STANDARD_H */