diff options
| author | default <nobody@localhost> | 2022-09-19 21:13:40 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2022-09-19 21:13:40 +0200 |
| commit | 0d86568346d116f96abfe81e5b0ae05ba17b17c2 (patch) | |
| tree | ccd7ba95c0be241d6c919f2a43e760e544f9408d /xs.h | |
| parent | de917a07d21199f72f845333a6fb60c2f7aebd46 (diff) | |
Start of work.
Diffstat (limited to 'xs.h')
| -rw-r--r-- | xs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -75,7 +75,7 @@ d_char *xs_dict_del(d_char *dict, const char *key); d_char *xs_dict_set(d_char *dict, const char *key, const char *data); d_char *xs_val_new(xstype t); d_char *xs_number_new(float f); -float xs_get_number(char *v); +float xs_number_get(char *v); extern int _xs_debug; @@ -697,7 +697,7 @@ d_char *xs_number_new(float f) } -float xs_get_number(char *v) +float xs_number_get(char *v) /* gets the number as a float */ { float f = 0.0; |