]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
whitespace cleanup only
authorJeff Lenk <jeff@jefflenk.com>
Wed, 12 Dec 2012 16:10:22 +0000 (10:10 -0600)
committerJeff Lenk <jeff@jefflenk.com>
Wed, 12 Dec 2012 16:10:22 +0000 (10:10 -0600)
src/include/switch_utils.h

index b23ebf54459e9b971206ad41f5e84600ded4ca7e..110c0e00832f84087f56da42746202fcfecc3ca4 100644 (file)
@@ -45,40 +45,40 @@ SWITCH_BEGIN_EXTERN_C
 /* https://code.google.com/p/stringencoders/wiki/PerformanceAscii */
 static inline uint32_t switch_toupper(uint32_t eax)
 {
-    uint32_t ebx = (0x7f7f7f7ful & eax) + 0x05050505ul;
-    ebx = (0x7f7f7f7ful & ebx) + 0x1a1a1a1aul;
-    ebx = ((ebx & ~eax) >> 2 ) & 0x20202020ul;
-    return eax - ebx;
+       uint32_t ebx = (0x7f7f7f7ful & eax) + 0x05050505ul;
+       ebx = (0x7f7f7f7ful & ebx) + 0x1a1a1a1aul;
+       ebx = ((ebx & ~eax) >> 2 ) & 0x20202020ul;
+       return eax - ebx;
 }
 
 
 static inline void switch_toupper_max(char *s)
-{   
-    uint32_t *b,*p;
-    char *c;
-    size_t l;
-    int div = 0, rem = 0;
-    int i;
-
-    l = strlen(s);
-    div = l / 4;
-    rem = l % 4;
-
-    p = (uint32_t *) s;
-
-    for (i = 0; i < div; i++) {
-        b = p;
-        *b = (uint32_t) switch_toupper(*b);
-        b++;
-        p++;
-    }
-
-    c = (char *)p;
-
-    for (i = 0; i < rem; i++) {
-        *c = (char) switch_toupper(*c);
-        c++;
-    }
+{
+       uint32_t *b,*p;
+       char *c;
+       size_t l;
+       int div = 0, rem = 0;
+       int i;
+
+       l = strlen(s);
+       div = l / 4;
+       rem = l % 4;
+
+       p = (uint32_t *) s;
+
+       for (i = 0; i < div; i++) {
+               b = p;
+               *b = (uint32_t) switch_toupper(*b);
+               b++;
+               p++;
+       }
+
+       c = (char *)p;
+
+       for (i = 0; i < rem; i++) {
+               *c = (char) switch_toupper(*c);
+               c++;
+       }
 }