librdesc
Loading...
Searching...
No Matches
docs
quick-start
src
functions.h
1
#ifndef PM_FUNCTIONS
2
#define PM_FUNCTIONS
3
4
#include <stddef.h>
5
6
7
/* Function interface. */
8
typedef
double (*pm_function)(
double
lhs,
size_t
argc,
double
*argv);
9
10
/* List of built-in functions. */
11
extern
pm_function pm_functions[];
12
13
/* Their names. */
14
extern
const
char
*pm_function_names[];
15
16
/* Their count. */
17
extern
size_t
pm_function_count;
18
19
20
#endif
Generated by
1.9.8