diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fonctions.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/fonctions.c b/lib/fonctions.c new file mode 100644 index 0000000..499c159 --- /dev/null +++ b/lib/fonctions.c @@ -0,0 +1,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"
\ No newline at end of file |