X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fi18n.h;h=5170c50f0d13df77abd8d01537ec4a32afa77e06;hb=c520ca964de11d794d830630b24c97ad9a6de0ce;hp=6722b5cec9c3cec743facd4238d50e4f9140c78a;hpb=8539c057c6889ff335da0e00117cc0f5fb9bf72d;p=pspp diff --git a/src/libpspp/i18n.h b/src/libpspp/i18n.h index 6722b5cec9..5170c50f0d 100644 --- a/src/libpspp/i18n.h +++ b/src/libpspp/i18n.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2010, 2011, 2012 Free Software Foundation, Inc. + Copyright (C) 2006, 2010, 2011, 2012, 2014, 2016 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -40,6 +40,9 @@ char *recode_string_pool (const char *to, const char *from, const char *text, int length, struct pool *); struct substring recode_substring_pool (const char *to, const char *from, struct substring text, struct pool *); +int recode_pedantically (const char *to, const char *from, + struct substring text, struct pool *, + struct substring *out); size_t recode_string_len (const char *to, const char *from, const char *text, int len); @@ -72,6 +75,7 @@ unsigned int utf8_hash_case_bytes (const char *, size_t n, unsigned int basis); unsigned int utf8_hash_case_string (const char *, unsigned int basis); int utf8_strcasecmp (const char *, const char *); int utf8_strncasecmp (const char *, size_t, const char *, size_t); +int utf8_strverscasecmp (const char *, const char *); char *utf8_to_upper (const char *); char *utf8_to_lower (const char *);