summaryrefslogtreecommitdiffstats
path: root/src/util/sss_utf8.c
Commit message (Collapse)AuthorAgeFilesLines
* Use pattern #elif defined(identifier)Lukas Slebodnik2014-03-141-4/+4
| | | | | | | | | | | | | | We had in source code following pattern #elif HAVE_<name> It worked because undefined identifier(in some cases) was evaluated to 0. But we do not care about value of HAVE_SOMETHING. We just need to know whether identifier was defined. There is not equivalent to #ifdef (short for of #if definded) We need to use long form: #elif defined HAVE_<name> It causes also compiler warning with enabled compiler flag -Wundef. Reviewed-by: Pavel Reichl <preichl@redhat.com>
* UTIL: Hide implementation details about unicode libraries.Lukas Slebodnik2014-03-141-1/+9
| | | | | | | Header files from glib or unistring are only necessary in implementation module sss_utf8.c Reviewed-by: Pavel Reichl <preichl@redhat.com>
* Make the string_equal() function publicJakub Hrozek2012-03-211-0/+9
|
* sss_utf8_tolower utility function+unit testsJakub Hrozek2011-12-161-0/+54
|
* Allow using Glib for UTF8 supportStephen Gallagher2011-12-051-0/+119