aboutsummaryrefslogtreecommitdiff
path: root/uxd.c
AgeCommit message (Collapse)Author
2024-12-24add -A (ASCII output) optionB. Watson
2024-12-24fix -a opt, if multibyte char spans dump linesB. Watson
2024-12-23do not dump past end of -d argumentB. Watson
2024-12-23use freopen() correctlyB. Watson
2024-12-23allow --help/--version anywhere in argvB. Watson
2024-12-23better error message for multiple filenames or args after filenameB. Watson
2024-12-23add -a optionB. Watson
2024-12-23commentaryB. Watson
2024-12-23allow decimal (floating point) for numeric argsB. Watson
2024-12-23add T/t (terabytes) for numeric optionsB. Watson
2024-12-23improve -c parsing and docB. Watson
2024-12-23force binary mode for stdin (might help with a windows port?)B. Watson
2024-12-23-l arg: allow redundadnt b/B for bytes, error on any other suffixB. Watson
2024-12-23don't allow >5 digits for -cB. Watson
2024-12-23fix alternating special colors with -cB. Watson
2024-12-23rename optarg, optind to avoid possible link issuesB. Watson
2024-12-23use fputs() rather than puts() for -t/-T (avoid extra newline)B. Watson
2024-12-21alternating colors for specialsB. Watson
2024-12-21inverse special hilight for multibyte specialsB. Watson
2024-12-21remove unused HL_OVERLONGB. Watson
2024-12-20> for out of range, update man mageB. Watson
2024-12-20better printable forms of invalid unicodeB. Watson
2024-12-20clean up highlightingB. Watson
2024-12-18add -j/-p/-w options.B. Watson
2024-12-18add -t/-T (terminal setup) options.B. Watson
2024-12-18blank before -i output, clarify "characters" means valid ones.B. Watson
2024-12-18detect UTF-16 surrogates as bad, use red for overlongB. Watson
2024-12-18variable name nitpickB. Watson
2024-12-18fix derpage in is_overlong()B. Watson
2024-12-18move more magic constants to #definesB. Watson
2024-12-17fix byte count for missing continuation bytes.B. Watson
2024-12-17don't check bad sequences for out-of-rangeB. Watson
2024-12-17uxd.c: add overlong sequence detection; ver.rst: regenerateB. Watson
2024-12-17turn some magic constants into #definesB. Watson
2024-12-17require at least 1 digit for parse_number()B. Watson
2024-12-17fix highlighting of 0x7f (delete) characterB. Watson
2024-12-17commentaryB. Watson
2024-12-17man page cleanupB. Watson
2024-12-17fix -l option when used with -s/-S, accept k/K/m/M/g/G suffixes for -s/-S/-o/-l.B. Watson
2024-12-17implement -d (dump data) option.B. Watson
2024-12-16fix prototype for next_normal_hilite(); commentaryB. Watson
2024-12-16do not allow negative -l limit.B. Watson
2024-12-16add -1 option, error checking for parse_number()B. Watson
2024-12-16add options to --help message.B. Watson
2024-12-16implement -m (mono).B. Watson
2024-12-15add -i (info) option.B. Watson
2024-12-15implement -c (colors) option.B. Watson
2024-12-15implement UXD_OPTS and NO_COLOR environment vars, add -n optionB. Watson
2024-12-15comment nitpickB. Watson
2024-12-15implement -s and -S (seek) options.B. Watson