summaryrefslogtreecommitdiff
path: root/src/string/includes/disp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/includes/disp.h')
-rw-r--r--src/string/includes/disp.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/string/includes/disp.h b/src/string/includes/disp.h
index 72fa9cb6..6506bb0c 100644
--- a/src/string/includes/disp.h
+++ b/src/string/includes/disp.h
@@ -22,49 +22,49 @@
/*
** \brief display of a float scalar
*/
-void sdisps (float in);
+double sdisps (float in);
/*
** \brief display of a double scalar
*/
-void ddisps (double in);
+double ddisps (double in);
/*
** \brief display of a float complex
*/
-void cdisps (floatComplex in);
+double cdisps (floatComplex in);
/*
** \brief display of a double complex
*/
-void zdisps (doubleComplex in);
+double zdisps (doubleComplex in);
/*
** \brief display of a float scalar array
** \param in the float scalar array to display
** \param size the size of the array
*/
-void sdispa (float* in, int size);
+double sdispa (float* in, int size);
/*
** \brief display of a double scalar array
** \param in the double scalar array to display
** \param size the size of the array
*/
-void ddispa (double* in, int size);
+double ddispa (double* in, int size);
/*
** \brief display of a float complex array
** \param in the float complex array to display
** \param size the size of the array
*/
-void cdispa (floatComplex* in, int size);
+double cdispa (floatComplex* in, int size);
/*
** \brief display of a double complex array
** \param in the double complex array to display
** \param size the size of the array
*/
-void zdispa (doubleComplex* in, int size);
+double zdispa (doubleComplex* in, int size);
#endif /* !__DISP_H__ */