util_absolute_path_p

one of the documented procedures in this installation of the ACS
Usage:
util_absolute_path_p {} path
What it does:
Check whether the path begins with a slash
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:

arg_parser_for_util_absolute_path_p $args

   set firstchar [string index $path 0]
   if {[string compare $firstchar /]} {
        return 0
   } else {
        return 1
   }


philg@mit.edu