home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / shell / xd-2.08 / xd-2 / xd / Config / gethome.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-09  |  187 b   |  11 lines

  1. #include "Config.h"
  2.  
  3. char const *Config::get_home(void) const
  4. {
  5.     if (homeparam == from_HOME)
  6.         return(home);            // start looking at 'home'
  7.     return ("/");                // start looking at root
  8. }
  9.  
  10.         
  11.