diff options
Diffstat (limited to 'lib/pr29.c')
-rw-r--r-- | lib/pr29.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,5 +1,6 @@ /* pr29.h --- Detect strings that are non-idempotent under NFKC in Unicode 3.2. - * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Simon Josefsson. + * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Simon + * Josefsson. * * This file is part of GNU Libidn. * @@ -1222,7 +1223,7 @@ combinationclass (uint32_t c) } /** - * pr29_4 - check if input trigger Unicode normalization bugs + * pr29_4: * @in: input array with unicode code points. * @len: length of input array with unicode code points. * @@ -1264,7 +1265,7 @@ pr29_4 (const uint32_t * in, size_t len) } /** - * pr29_4z - check if input trigger Unicode normalization bugs + * pr29_4z: * @in: zero terminated array of Unicode code points. * * Check the input to see if it may be normalized into different @@ -1288,7 +1289,7 @@ pr29_4z (const uint32_t * in) } /** - * pr29_8z - check if input trigger Unicode normalization bugs + * pr29_8z: * @in: zero terminated input UTF-8 string. * * Check the input to see if it may be normalized into different @@ -1325,7 +1326,7 @@ pr29_8z (const char *in) * non-zero values, for logical comparison purposes. * @PR29_PROBLEM: A problem sequence was encountered. * @PR29_STRINGPREP_ERROR: The character set conversion failed (only - * for pr29_8() and pr29_8z()). + * for pr29_8z()). * * Enumerated return codes for pr29_4(), pr29_4z(), pr29_8z(). The * value 0 is guaranteed to always correspond to success. |