File: proto.h

package info (click to toggle)
mathomatic 12.6.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 960 kB
  • ctags: 569
  • sloc: ansic: 14,962; makefile: 129; sh: 42; python: 33; java: 17
file content (30 lines) | stat: -rw-r--r-- 1,158 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Global function prototypes for Mathomatic.
 *
 * Copyright (C) 1987-2006 George Gesslein II.
 */

/* command function list */
int		clear_cmd(), quit_cmd(), list_cmd(), simplify_cmd(), help_cmd(), eliminate_cmd();
int		fraction_cmd(), unfactor_cmd(), compare_cmd(), extrema_cmd();
int		read_cmd(), flist_cmd(), calculate_cmd(), solve_cmd();
int		factor_cmd(), derivative_cmd(), replace_cmd();
int		save_cmd(), taylor_cmd(), limit_cmd();
int		copy_cmd(), divide_cmd(), pause_cmd(), version_cmd();
int		edit_cmd(), real_cmd(), imaginary_cmd(), tally_cmd();
int		roots_cmd(), set_cmd(), code_cmd(), optimize_cmd(), push_cmd();
int		sum_cmd(), product_cmd(), integrate_cmd(), nintegrate_cmd(), laplace_cmd();

/* various functions that don't return int */
char		*skip_space(), *skip_param();
char		*get_string();
char		*parse_equation(), *parse_section(), *parse_var(), *parse_var2(), *parse_expr();
char		*list_expression(), *list_equation();
double		gcd(), my_round(), multiply_out_unique();
long		decstrtol();

void fphandler(int sig);
void inthandler(int sig);
void alarmhandler(int sig);
void resizehandler(int sig);
void exit_program(int exit_value);