acl: allow cross-compilation to Gentoo
[gnulib.git] / lib / unicase / u32-tolower.c
index 2c3e31b..5361da7 100644 (file)
@@ -1,5 +1,5 @@
 /* Lowercase mapping for UTF-32 strings (locale dependent).
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009-2013 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
 
 uint32_t *
 u32_tolower (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, iso639_language,
-                     uc_tolower, offsetof (struct special_casing_rule, lower[0]),
-                     nf,
-                     resultbuf, lengthp);
+  return u32_casemap (s, n,
+                      unicase_empty_prefix_context, unicase_empty_suffix_context,
+                      iso639_language,
+                      uc_tolower, offsetof (struct special_casing_rule, lower[0]),
+                      nf,
+                      resultbuf, lengthp);
 }