summaryrefslogtreecommitdiff
path: root/include/urweb.h
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 11:41:04 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 11:41:04 -0400
commit9ae8932c978ab9c12f683745b47b3e0898581635 (patch)
tree92fd1f76d01cbe023599cb2d43215f82fb552960 /include/urweb.h
parent5cf1d4d086475575a31f57413c57c22bd6fda378 (diff)
Parsing strings for floats and bools
Diffstat (limited to 'include/urweb.h')
-rw-r--r--include/urweb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/urweb.h b/include/urweb.h
index 84cc6719..83039520 100644
--- a/include/urweb.h
+++ b/include/urweb.h
@@ -79,3 +79,5 @@ lw_Basis_string lw_Basis_floatToString(lw_context, lw_Basis_float);
lw_Basis_string lw_Basis_boolToString(lw_context, lw_Basis_bool);
lw_Basis_int *lw_Basis_stringToInt(lw_context, lw_Basis_string);
+lw_Basis_float *lw_Basis_stringToFloat(lw_context, lw_Basis_string);
+lw_Basis_bool *lw_Basis_stringToBool(lw_context, lw_Basis_string);