fflush, stat: no 'static inline'
[gnulib.git] / lib / unicase / u8-ct-toupper.c
index 9dca2fc..fb966ac 100644 (file)
@@ -1,5 +1,5 @@
 /* Uppercase mapping for UTF-8 substrings (locale dependent).
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009-2012 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2009.
 
    This program is free software: you can redistribute it and/or modify it
 
 uint8_t *
 u8_ct_toupper (const uint8_t *s, size_t n,
-              casing_prefix_context_t prefix_context,
-              casing_suffix_context_t suffix_context,
-              const char *iso639_language,
-              uninorm_t nf,
-              uint8_t *resultbuf, size_t *lengthp)
+               casing_prefix_context_t prefix_context,
+               casing_suffix_context_t suffix_context,
+               const char *iso639_language,
+               uninorm_t nf,
+               uint8_t *resultbuf, size_t *lengthp)
 {
   return u8_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);
 }