File: init.cfg

package info (click to toggle)
gzip 1.14-1~exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 7,356 kB
  • sloc: ansic: 40,846; sh: 9,648; makefile: 334; perl: 11
file content (15 lines) | stat: -rw-r--r-- 489 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file is sourced by init.sh, *before* its initialization.

# This goes hand in hand with the "exec 9>&2;" in Makefile.am's
# TESTS_ENVIRONMENT definition.
stderr_fileno_=9

# Like printf with a single argument, but that argument must be a
# sequence of four-byte strings \xHH where each H is a hexadecimal byte.
hex_printf_()
{
  local octal_fmt=$(printf '\\%o' \
    $(printf '%s\n' "$1" \
      | sed 's,\\x\([0-9abcdefABCDEF][0-9abcdefABCDEF]\), 0x\1,g'))
  printf "$octal_fmt"
}