]> git.saurik.com Git - apple/libc.git/blobdiff - locale/FreeBSD/fix_grouping.c
Libc-763.11.tar.gz
[apple/libc.git] / locale / FreeBSD / fix_grouping.c
index 7af4e41c537e0194436823b90f06eb139263f7d6..ab08f3f2cbd5cef2647340a837e8dcb6df49c3a0 100644 (file)
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/lib/libc/locale/fix_grouping.c,v 1.7 2002/03/22 21:52:18 obrien Exp $");
+__FBSDID("$FreeBSD: src/lib/libc/locale/fix_grouping.c,v 1.8 2003/06/26 10:46:16 phantom Exp $");
 
 #include <ctype.h>
 #include <limits.h>
@@ -34,12 +34,15 @@ __FBSDID("$FreeBSD: src/lib/libc/locale/fix_grouping.c,v 1.7 2002/03/22 21:52:18
 static const char nogrouping[] = { CHAR_MAX, '\0' };
 
 /*
- * "3;3;-1" -> "\003\003\177"
+ * Internal helper used to convert grouping sequences from string
+ * representation into POSIX specified form, i.e.
+ *
+ * "3;3;-1" -> "\003\003\177\000"
  */
 
 const char *
-__fix_locale_grouping_str(const char *str) {
-
+__fix_locale_grouping_str(const char *str)
+{
        char *src, *dst;
        char n;