====== file_IsAbsolutePath ====== ===== Description ===== Test whether a given path name is an absolute path (returns true) or a relative path (returns false). ===== Files ===== ^ Declaration | ''zFile.h'' | ^ Implementation | ''zFile.cpp'' | ===== Function prototype ===== bool zfile_IsAbsolutePath(const char* lpPathName); ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | //lpPathName// | ''const char*'' | A C-style string containing the path to be tested. | ===== Return value ===== True if the given path is a fully qualified absolute path, and false otherwise. ===== Comments ===== None.