summaryrefslogtreecommitdiff
path: root/misc.c
AgeCommit message (Collapse)Author
2021-08-01Fixed a typo in `sanitized_dir_path_name()`.mrb0nk500
2021-08-01Added `sanitized_dir_path_name()`.mrb0nk500
This function is the same as `dir_path_name()`, except `name` is sanitized before being appended to `root`.
2021-08-01Fixed an infinite loop bug in `sanitized_str()`, andmrb0nk500
`sanitized_strlen()`.
2021-08-01Explicitly discard const qualifier in `find_alpha()`.mrb0nk500
This was done to get rid of a const qualifier warning.
2021-07-03Added `find_alpha()`, and `create_num_str()`.mrb0nk500
2021-06-26Include `stdarg.h` in `misc.c`.mrb0nk500
2021-06-26Added `format_len()`.mrb0nk500
2021-06-23Fixed another typo in `dir_path_num()`.mrb0nk500
2021-06-23Fixed a typo in `dir_path_num()`.mrb0nk500
2021-06-23Added `sanitize_strlen()`, and `sanitize_str()`.mrb0nk500
`sanitize_str()` creates a string with each starting space replaced by a hyphen, and with all trailing spaces, and periods removed. `sanitize_strlen()` gets the length of the sanatized version of the supplied string.
2021-06-23Added `delm_span()`.mrb0nk500
2021-06-23Added 'dir_path_num()', and `dir_path_name()`.mrb0nk500
2021-06-18Move all miscellaneous functions from `config.c` intomrb0nk500
`misc.c`.