
  PROCEDURE [INLINE] rap$convert_path_to_str
    (    path: pft$path;
     VAR path_str: rat$path);

?? PUSH (LISTEXT := ON) ??

    VAR
      fs_path: fst$path,
      fs_path_size: fst$path_size;


    pfp$convert_pft$path_to_fs_path (path, fs_path, fs_path_size);

    path_str.path := fs_path;
    path_str.size := fs_path_size;

  PROCEND rap$convert_path_to_str;

{ PURPOSE:
{   This procedure converts the PF path array into a string format usable
{   as a file reference for further processing.
{
{ DESIGN:
{   The conversion is done by another interface.  The values returned are
{   repackaged into a record type that is usable by STRINGREP (which is
{   used in building paths).
{
{ NOTES:
{

*copyc pfp$convert_pft$path_to_fs_path
?? POP ??

