Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / util / mkelfImage / kunzip_src / include / string.h
index dbaa1ecd1768ce6110dc55576f121502c7263be0..fa301c822e9b08a028724b4e4d4a01e2e8e67478 100644 (file)
@@ -3,23 +3,23 @@
 
 #include <stddef.h>
 
-// yes, linux has fancy ones. We don't care. This stuff gets used 
+// yes, linux has fancy ones. We don't care. This stuff gets used
 // hardly at all. And the pain of including those files is just too high.
 
 //extern inline void strcpy(char *dst, char *src) {while (*src) *dst++ = *src++;}
 
 //extern inline int strlen(char *src) { int i = 0; while (*src++) i++; return i;}
 
-static inline size_t strnlen(const char *src, size_t max) { 
-  int i = 0; 
+static inline size_t strnlen(const char *src, size_t max) {
+  int i = 0;
   if (max<0) {
-    while (*src++) 
-      i++; 
+    while (*src++)
+      i++;
     return i;
   }
   else {
-    while ((*src++) && (i < max)) 
-      i++; 
+    while ((*src++) && (i < max))
+      i++;
     return i;
   }
 }