/* SPDX-License-Identifier: copyleft-next-0.3.1 */ /* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ /** * @file path.c * * Path handling helper implementations. */ #include #include #include #include #include #include #include char *fwd_basename(const char *file) { size_t l = strlen(file); size_t n = l - 1; while (--n) { if (file[n] == '/') break; } if (n == 0) return strdup(file); return strndup(file + n + 1, l - n); } char *fwd_dirname(const char *file) { size_t l = strlen(file); size_t n = l - 1; while (--n) { if (file[n] == '/') break; } return strndup(file, n); } char *fwd_cwdname() { size_t size; long path_max = pathconf(".", _PC_PATH_MAX); if (path_max == -1) size = 1024; else size = (size_t)path_max; char *buf = malloc(size); if (!buf) return NULL; if (!getcwd(buf, size)) { error("%s\n", strerror(errno)); free(buf); return NULL; } return buf; }