]> git.sur5r.net Git - cc65/commitdiff
Conformed to the cc65 project's coding style.
authorGreg King <gregdk@users.sf.net>
Fri, 23 May 2014 04:35:19 +0000 (00:35 -0400)
committerGreg King <gregdk@users.sf.net>
Fri, 23 May 2014 04:35:19 +0000 (00:35 -0400)
libsrc/common/strqtok.c
testcode/lib/strqtok-test.c

index 6e8476b1550a65d2a4c65265c9dafb3444164d8b..132a50d698c6177966cfe9555916517d5f7ad886 100644 (file)
@@ -15,7 +15,7 @@
 #include <string.h>
 
 
-char * __fastcall__ strqtok (register char *s1, const char *s2)
+char* __fastcall__ strqtok (register char* s1, const char* s2)
 {
     static char c;
     static char *start;
index b670f37ce927664a0458407e8bdd703d264d9af7..576ab531d17c7199de094c976e0cccc5ba65d7c6 100644 (file)
@@ -30,7 +30,7 @@
 #include <string.h>
 #include <stdio.h>
 
-void main(void)
+void main (void)
 {
     /* b[] and s[] are declared as automatic, not static, variables
     ** because strqtok() will change them.
@@ -41,10 +41,10 @@ void main(void)
     char s[] = "  This ,  \"  is only    \"a   short   "
         "quoting\"test ,  honoring  blanks"
         ", commas\", and (4) empty \"\"\"\"\"\"\"\" \"strings,   EOT  ";
-    char *t = strqtok(s, " ,");
+    char *t = strqtok (s, " ,");
 
     while (t != NULL) {
-        printf(">%s<\n", t);
-        t = strqtok(NULL, " ,");
+        printf (">%s<\n", t);
+        t = strqtok (NULL, " ,");
     }
 }