aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2003-05-16 11:24:01 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2003-05-16 11:24:01 +0000
commit45639747ce72dfd6b90551379a7b696ec8228e46 (patch)
tree478b23e953a3177f61cac169271fdd37eb5f1030 /src/zexy.c
parent73fd0200c0b629285c6dfc0379297d5c51838cc7 (diff)
wrap is something like modulo for floats, although the upper and lower limit can be set
svn path=/trunk/externals/zexy/; revision=620
Diffstat (limited to 'src/zexy.c')
-rw-r--r--src/zexy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/zexy.c b/src/zexy.c
index dd818f6..87a929b 100644
--- a/src/zexy.c
+++ b/src/zexy.c
@@ -91,9 +91,9 @@ static void zexy_help(void)
"\nsort\t\t:: shell-sort a package of floats"
"\ndemux\t\t:: demultiplex the input to a specified output"
"\nmsgfile\t\t:: store and handles lists of lists"
-#ifdef linux
"\nlp\t\t:: write to the (parallel) port"
-#endif
+ "\nwrap\t\t:: wrap a floating number between 2 limits"
+ "\nurn\t\t:: unique random numbers"
#if 0
"\nexecute\t\t:: execute an application"
#endif
@@ -196,6 +196,7 @@ void z_down_setup();
void z_prime_setup();
void z_random_setup();
+void z_wrap_setup();
/*
waiting to be released in near future:
make stdin~ and stdout~ work
@@ -251,6 +252,7 @@ void zexy_setup(void)
z_prime_setup();
z_random_setup();
+ z_wrap_setup();
#if 0
z_stdinout_setup();