# shellcheck shell=dash

___x_cmd_chat___wctoken(){
    local x_=""
    ___x_cmd_chat___wctoken_ "$@" || return $?
    printf "%s\n" "$x_"
}

___x_cmd_chat___wctoken_(){
    local a;
    if [ "$#" -eq 0 ]; then
        a="$(___x_cmd_cmds wc -c)"
    else
        a="$(___x_cmd_cmds wc -c)" <<A
$*
A
    fi
    x_="$(( a * 10 / 32 ))"
    x_="${x_%\.*}"
}


