Use spaces for indentation, not tabs.
[gnulib.git] / lib / unicase / u16-ct-toupper.c
index 029c74b..8ffff9a 100644 (file)
 
 uint16_t *
 u16_ct_toupper (const uint16_t *s, size_t n,
-               casing_prefix_context_t prefix_context,
-               casing_suffix_context_t suffix_context,
-               const char *iso639_language,
-               uninorm_t nf,
-               uint16_t *resultbuf, size_t *lengthp)
+                casing_prefix_context_t prefix_context,
+                casing_suffix_context_t suffix_context,
+                const char *iso639_language,
+                uninorm_t nf,
+                uint16_t *resultbuf, size_t *lengthp)
 {
   return u16_casemap (s, n, prefix_context, suffix_context, iso639_language,
-                     uc_toupper, offsetof (struct special_casing_rule, upper[0]),
-                     nf,
-                     resultbuf, lengthp);
+                      uc_toupper, offsetof (struct special_casing_rule, upper[0]),
+                      nf,
+                      resultbuf, lengthp);
 }