summaryrefslogtreecommitdiff
path: root/lib/fonctions.c
blob: 499c15930780571de4378287babe0f1ae70215bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *
 * fonctions avancees sur les polynomes
 *
 */
 
#include "fonctions.h"
#include "pile.h"

typedef struct func_t {
	func_name func;
	char *nom;
	int arite;
	type_elem arg1, arg2, arg3;
} func_t;

static func_table[] = {
	{ DERIV, "deriv", 1, T_POLY, -1, -1},
	{ DERIVN, "derivn"