Home | History | Annotate | Line # | Download | only in bugs-fixed
unicode-null-match.awk revision 1.1.1.1.4.2
      1 BEGIN {
      2 	# str = "\342\200\257"
      3 	str = ""
      4 	n = gsub(//, "X", str)
      5 	print n, str
      6 }
      7