NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
path.h
Go to the documentation of this file.
1
24#ifndef MUTT_MUTT_PATH_H
25#define MUTT_MUTT_PATH_H
26
27#include <stdbool.h>
28#include <stdio.h>
29
30struct Buffer;
31
32bool mutt_path_abbr_folder(struct Buffer *path, const char *folder);
33const char *mutt_path_basename(const char *path);
34bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir);
35char * mutt_path_dirname(const char *path);
36char * mutt_path_escape(const char *src);
37const char *mutt_path_getcwd(struct Buffer *cwd);
38size_t mutt_path_realpath(struct Buffer *path);
39bool mutt_path_tidy(struct Buffer *path, bool is_dir);
40bool mutt_path_tidy_dotdot(char *buf);
41bool mutt_path_tidy_slash(char *buf, bool is_dir);
42bool mutt_path_tilde(struct Buffer *path, const char *homedir);
43bool mutt_path_to_absolute(char *path, const char *reference);
44
45#endif /* MUTT_MUTT_PATH_H */
bool mutt_path_tidy_dotdot(char *buf)
Remove dot-dot-slash from a path.
Definition: path.c:108
const char * mutt_path_basename(const char *path)
Find the last component for a pathname.
Definition: path.c:281
bool mutt_path_tidy(struct Buffer *path, bool is_dir)
Remove unnecessary parts of a path.
Definition: path.c:168
bool mutt_path_to_absolute(char *path, const char *reference)
Convert relative filepath to an absolute path.
Definition: path.c:332
bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir)
Create the canonical version of a path.
Definition: path.c:247
char * mutt_path_escape(const char *src)
Escapes single quotes in a path for a command string.
Definition: path.c:429
char * mutt_path_dirname(const char *path)
Return a path up to, but not including, the final '/'.
Definition: path.c:311
bool mutt_path_tidy_slash(char *buf, bool is_dir)
Remove unnecessary slashes and dots.
Definition: path.c:57
bool mutt_path_abbr_folder(struct Buffer *path, const char *folder)
Create a folder abbreviation.
Definition: path.c:395
size_t mutt_path_realpath(struct Buffer *path)
Resolve path, unraveling symlinks.
Definition: path.c:373
bool mutt_path_tilde(struct Buffer *path, const char *homedir)
Expand '~' in a path.
Definition: path.c:193
const char * mutt_path_getcwd(struct Buffer *cwd)
Get the current working directory.
Definition: path.c:472
String manipulation buffer.
Definition: buffer.h:36