OSDN Git Service

Cleanup whitespace.
[android-x86/hardware-ril.git] / reference-ril / at_tok.c
index 11e0cba..204a69e 100644 (file)
@@ -2,16 +2,16 @@
 **
 ** Copyright 2006, The Android Open Source Project
 **
-** Licensed under the Apache License, Version 2.0 (the "License"); 
-** you may not use this file except in compliance with the License. 
-** You may obtain a copy of the License at 
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
 **
-**     http://www.apache.org/licenses/LICENSE-2.0 
+**     http://www.apache.org/licenses/LICENSE-2.0
 **
-** Unless required by applicable law or agreed to in writing, software 
-** distributed under the License is distributed on an "AS IS" BASIS, 
-** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
-** See the License for the specific language governing permissions and 
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
 ** limitations under the License.
 */
 
@@ -64,7 +64,7 @@ static void skipNextComma(char **p_cur)
 
     if (**p_cur == ',') {
         (*p_cur)++;
-    }    
+    }
 }
 
 static char * nextTok(char **p_cur)
@@ -97,7 +97,7 @@ static char * nextTok(char **p_cur)
 static int at_tok_nextint_base(char **p_cur, int *p_out, int base, int  uns)
 {
     char *ret;
-    
+
     if (*p_cur == NULL) {
         return -1;
     }
@@ -126,7 +126,7 @@ static int at_tok_nextint_base(char **p_cur, int *p_out, int base, int  uns)
 }
 
 /**
- * Parses the next base 10 integer in the AT response line 
+ * Parses the next base 10 integer in the AT response line
  * and places it in *p_out
  * returns 0 on success and -1 on fail
  * updates *p_cur
@@ -137,7 +137,7 @@ int at_tok_nextint(char **p_cur, int *p_out)
 }
 
 /**
- * Parses the next base 16 integer in the AT response line 
+ * Parses the next base 16 integer in the AT response line
  * and places it in *p_out
  * returns 0 on success and -1 on fail
  * updates *p_cur