aboutsummaryrefslogtreecommitdiff
path: root/src/Ell_Register.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ell_Register.c')
-rw-r--r--src/Ell_Register.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Ell_Register.c b/src/Ell_Register.c
index 7ea6956..2bc2ae0 100644
--- a/src/Ell_Register.c
+++ b/src/Ell_Register.c
@@ -21,6 +21,13 @@
static pNamedData *EqNameDB;
+int Ell_RegisterSolver(void (*function),
+ const char *sname,
+ const char *eqname);
+
+int Ell_RegisterEq(void *(function)(const char *, void*), const char *eqname);
+
+
/* Ell_RegisterEq takes a routine ("function") and registers that routine
under the name "eqname" in the EqNameDB"
Application: Call Ell_Register with the routine that registers a solver