#compdef uu-head

autoload -U is-at-least

_uu-head() {
    typeset -A opt_args
    typeset -a _arguments_options
    local ret=1

    if is-at-least 5.2; then
        _arguments_options=(-s -S -C)
    else
        _arguments_options=(-s -C)
    fi

    local context curcontext="$curcontext" state line
    _arguments "${_arguments_options[@]}" : \
'-c+[head-help-bytes]:[-]NUM:_default' \
'--bytes=[head-help-bytes]:[-]NUM:_default' \
'-n+[head-help-lines]:[-]NUM:_default' \
'--lines=[head-help-lines]:[-]NUM:_default' \
'-q[head-help-quiet]' \
'--quiet[head-help-quiet]' \
'--silent[head-help-quiet]' \
'-v[head-help-verbose]' \
'--verbose[head-help-verbose]' \
'--presume-input-pipe[]' \
'-z[head-help-zero-terminated]' \
'--zero-terminated[head-help-zero-terminated]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
'::FILE:_files' \
&& ret=0
}

(( $+functions[_uu-head_commands] )) ||
_uu-head_commands() {
    local commands; commands=()
    _describe -t commands 'uu-head commands' commands "$@"
}

if [ "$funcstack[1]" = "_uu-head" ]; then
    _uu-head "$@"
else
    compdef _uu-head uu-head
fi
