]> git.pond.sub.org Git - empserver/blobdiff - src/client/saveargv.c
Indented with src/scripts/indent-emp.
[empserver] / src / client / saveargv.c
index 2d6fcc802931dcee31c81740b54dc3dd20fcac07..3d2750559a93afddc426de94f32c231c564851d8 100644 (file)
 
 void
 saveargv(ac, src, dst)
-       int     ac;
-       s_char  **src;
-       s_char  **dst;
+int ac;
+s_char **src;
+s_char **dst;
 {
-       extern  s_char *strcpy();
-       extern  s_char *malloc();
-       register s_char *ptr;
-       register int i;
+    extern s_char *strcpy();
+    extern s_char *malloc();
+    register s_char *ptr;
+    register int i;
 
-       for (i = 0; i < ac; i++) {
-               dst[i] = strcpy(malloc(strlen(src[i])+1), src[i]);
-               ptr = src[i];
-               while (*ptr)
-                   *ptr++ = ' ';
-       }
+    for (i = 0; i < ac; i++) {
+       dst[i] = strcpy(malloc(strlen(src[i]) + 1), src[i]);
+       ptr = src[i];
+       while (*ptr)
+           *ptr++ = ' ';
+    }
 }