diff examples/mystring.c @ 9932:6cb30a539481

untabify files in examples directory
author John W. Eaton <jwe@octave.org>
date Mon, 07 Dec 2009 14:53:20 -0500 (2009-12-07)
parents 4295d634797d
children
line wrap: on
line diff
--- a/examples/mystring.c
+++ b/examples/mystring.c
@@ -3,7 +3,7 @@
 
 void
 mexFunction (int nlhs, mxArray *plhs[], int nrhs, 
-	     const mxArray *prhs[])
+             const mxArray *prhs[])
 {
   mwIndex i, j;
   mwSize m, n;
@@ -17,7 +17,7 @@
   n = mxGetN (prhs[0]);
   pi = mxGetChars (prhs[0]);
   plhs[0] = mxCreateNumericMatrix (m, n, mxCHAR_CLASS, 
-				   mxREAL);
+                                   mxREAL);
   po = mxGetChars (plhs[0]);
 
   for (j = 0; j < n; j++)