Use spaces for indentation, not tabs.
[gnulib.git] / lib / unicase / u32-ct-tolower.c
index 83e9fa8..876219c 100644 (file)
 
 uint32_t *
 u32_ct_tolower (const uint32_t *s, size_t n,
-               casing_prefix_context_t prefix_context,
-               casing_suffix_context_t suffix_context,
-               const char *iso639_language,
-               uninorm_t nf,
-               uint32_t *resultbuf, size_t *lengthp)
+                casing_prefix_context_t prefix_context,
+                casing_suffix_context_t suffix_context,
+                const char *iso639_language,
+                uninorm_t nf,
+                uint32_t *resultbuf, size_t *lengthp)
 {
   return u32_casemap (s, n, prefix_context, suffix_context, iso639_language,
-                     uc_tolower, offsetof (struct special_casing_rule, lower[0]),
-                     nf,
-                     resultbuf, lengthp);
+                      uc_tolower, offsetof (struct special_casing_rule, lower[0]),
+                      nf,
+                      resultbuf, lengthp);
 }