remove leading './' or '/' chars here */
| 773 | |
| 774 | /* remove leading './' or '/' chars here */ |
| 775 | static const char * trimPath(const char *pathname) |
| 776 | { |
| 777 | return trimLeadingRootChar( |
| 778 | trimLeadingCurrentDirConst(pathname)); |
| 779 | } |
| 780 | |
| 781 | static char* mallocAndJoin2Dir(const char *dir1, const char *dir2) |
| 782 | { |
no test coverage detected