aboutsummaryrefslogtreecommitdiff
path: root/pdstring+wchar/src/bytes2wchars.c
diff options
context:
space:
mode:
Diffstat (limited to 'pdstring+wchar/src/bytes2wchars.c')
-rw-r--r--pdstring+wchar/src/bytes2wchars.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pdstring+wchar/src/bytes2wchars.c b/pdstring+wchar/src/bytes2wchars.c
index 185a3cb..7fbbc99 100644
--- a/pdstring+wchar/src/bytes2wchars.c
+++ b/pdstring+wchar/src/bytes2wchars.c
@@ -34,7 +34,7 @@
#endif
#include "mooPdUtils.h"
-#include "pdstringUtils.c"
+#include "pdstringUtils.h"
/* black magic */
#ifdef NT
@@ -81,9 +81,9 @@ static void bytes2wchars_atoms(t_bytes2wchars *x, int argc, t_atom *argv)
t_pdstring_atoms src = {argv,argc,0};
/*-- convert atoms -> bytes -> wchars -> atoms --*/
- pdstring_atoms2bytes(&x->x_bytes, &src, PDSTRING_EOS_NONE);
- pdstring_bytes2wchars(&x->x_wchars, &x->x_bytes);
- pdstring_wchars2atoms(&x->x_atoms, &x->x_wchars); //-- TODO
+ pdstring_atoms2bytes (x, &x->x_bytes, &src, PDSTRING_EOS_NONE);
+ pdstring_bytes2wchars(x, &x->x_wchars, &x->x_bytes);
+ pdstring_wchars2atoms(x, &x->x_atoms, &x->x_wchars);
}