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