Use spaces for indentation, not tabs.
[gnulib.git] / lib / unicase / u32-toupper.c
index 3430ad9..b7f857a 100644 (file)
 
 uint32_t *
 u32_toupper (const uint32_t *s, size_t n, const char *iso639_language,
-            uninorm_t nf,
-            uint32_t *resultbuf, size_t *lengthp)
+             uninorm_t nf,
+             uint32_t *resultbuf, size_t *lengthp)
 {
   return u32_casemap (s, n,
-                     unicase_empty_prefix_context, unicase_empty_suffix_context,
-                     iso639_language,
-                     uc_toupper, offsetof (struct special_casing_rule, upper[0]),
-                     nf,
-                     resultbuf, lengthp);
+                      unicase_empty_prefix_context, unicase_empty_suffix_context,
+                      iso639_language,
+                      uc_toupper, offsetof (struct special_casing_rule, upper[0]),
+                      nf,
+                      resultbuf, lengthp);
 }