| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/include/dovecot/ |
Upload File : |
#ifndef ABSPATH_H #define ABSPATH_H /* Returns path as absolute path. If it's not already absolute path, it's assumed to be relative to current working directory. */ const char *t_abspath(const char *path); /* Like t_abspath(), but path is relative to given root. */ const char *t_abspath_to(const char *path, const char *root); /* Returns current directory, allocated from data stack. */ int t_get_current_dir(const char **dir_r); /* Returns symlink destination, allocated from data stack. */ int t_readlink(const char *path, const char **dest_r); /* Update binpath to be absolute: a) begins with '/' -> no change b) contains '/' -> assume relative to working directory c) set to first executable that's found from $PATH If no usable binary was found, return FALSE. */ bool t_binary_abspath(const char **binpath); #endif