summaryrefslogtreecommitdiff
path: root/src/string/string/cstringa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/string/cstringa.c')
-rw-r--r--src/string/string/cstringa.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/string/string/cstringa.c b/src/string/string/cstringa.c
index 4571b6f1..c0763f85 100644
--- a/src/string/string/cstringa.c
+++ b/src/string/string/cstringa.c
@@ -9,3 +9,15 @@
* http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
*
*/
+#include "string.h"
+
+void cstringa (floatComplex* in, int size ,char** out){
+
+ int i = 0;
+ for (i = 0; i < size; ++i)
+ {
+ cstrings (in[i], out[i]);
+ }
+
+
+}