]> git.sesse.net Git - vlc/blobdiff - compat/strtok_r.c
opengl: stick to single precision
[vlc] / compat / strtok_r.c
index 7a17d676440bae634a8d8f843681efde318be331..be9d5570b07008334f617da9c80f954735f535b3 100644 (file)
@@ -10,7 +10,7 @@
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  * GNU Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public License
 
 char *strtok_r(char *s, const char *delim, char **save_ptr)
 {
-       char *token;
+    char *token;
 
-       if (s == NULL)
-               s = *save_ptr;
+    if (s == NULL)
+        s = *save_ptr;
 
-       /* Scan leading delimiters. */
-       s += strspn (s, delim);
-       if (*s == '\0')
-               return NULL;
+    /* Scan leading delimiters. */
+    s += strspn (s, delim);
+    if (*s == '\0')
+        return NULL;
 
-       /* Find the end of the token. */
-       token = s;
-       s = strpbrk (token, delim);
-       if (s == NULL)
-               /* This token finishes the string. */
-               *save_ptr = strchr (token, '\0');
-       else
-       {
-               /* Terminate the token and make *SAVE_PTR point past it. */
-               *s = '\0';
-               *save_ptr = s + 1;
-       }
-       return token;
+    /* Find the end of the token. */
+    token = s;
+    s = strpbrk (token, delim);
+    if (s == NULL)
+        /* This token finishes the string. */
+        *save_ptr = strchr (token, '\0');
+    else
+    {
+        /* Terminate the token and make *SAVE_PTR point past it. */
+        *s = '\0';
+        *save_ptr = s + 1;
+    }
+    return token;
 }