Redesign message format
[khatus.git] / src / awk / exe / parse_metar_d_output.awk
index fa354da..82d2e29 100755 (executable)
@@ -8,15 +8,15 @@
 
 /[A-z][a-z]+ *: / {
     split($0, line, ":")
-    key = util_strip(line[1])
-    val = util_strip(line[2])
+    key = str_strip(line[1])
+    val = str_strip(line[2])
     values[NR] = val
     first[key] = NR
     last[key] = NR
 }
 
 /^ +/ {
-    values[NR] = util_strip($0)
+    values[NR] = str_strip($0)
     last[key] = NR
 }
 
This page took 0.021518 seconds and 4 git commands to generate.