]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/tools/locale/tools/extract-colldef.awk
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
[FreeBSD/FreeBSD.git] / tools / tools / locale / tools / extract-colldef.awk
1 # $FreeBSD$
2
3 BEGIN {
4         print "# Warning: Do not edit. This is automatically extracted"
5         print "# from CLDR project data, obtained from http://cldr.unicode.org/"
6         print "# -----------------------------------------------------------------------------"
7 }
8 $1 == "comment_char" { print }
9 $1 == "escape_char" { print }
10 $1 == "LC_COLLATE" { doprint = 1 }
11 doprint == 1 { print }
12 $1 == "END" && $2 == "LC_COLLATE" { exit 0 }