diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-01-17 22:34:28 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-01-17 22:34:28 +0000 |
commit | c02fb1011c89b05c3da9d3a7c52ecbc35c35f0a6 (patch) | |
tree | 871cd48638d851daa0ae849b93c8ca7c64a45f09 /src/string2any.c | |
parent | 98cbc5906ae0fba14fcb42fd4d855924cf42a192 (diff) |
+ added [any2bytes], [bytes2any] aliases for [any2string], [string2any]
svn path=/trunk/externals/moocow/pdstring/; revision=10573
Diffstat (limited to 'src/string2any.c')
-rw-r--r-- | src/string2any.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/string2any.c b/src/string2any.c index 1ead4cf..ddb286e 100644 --- a/src/string2any.c +++ b/src/string2any.c @@ -227,6 +227,9 @@ void string2any_setup_guts(void) CLASS_DEFAULT, A_GIMME, //-- initial_bufsize, eos_char 0); + + //-- alias + class_addcreator((t_newmethod)string2any_new, gensym("bytes2any"), A_GIMME, 0); //-- methods class_addanything(string2any_class, (t_method)string2any_anything); |