Mercurial > hg > octave-nkf
diff src/utils.cc @ 3536:e8fbc8c3d6d9
[project @ 2000-02-02 12:01:00 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 12:01:08 +0000 |
parents | 096ad38d7ab5 |
children | 4290f11c8d3b |
line wrap: on
line diff
--- a/src/utils.cc +++ b/src/utils.cc @@ -228,7 +228,7 @@ // See if the given file is in the path. -std:string +std::string search_path_for_file (const std::string& path, const std::string& name) { dir_path p (path); @@ -303,7 +303,7 @@ return retval; } -std:string +std::string file_in_path (const std::string& name, const std::string& suffix) { std::string nm = name; @@ -318,7 +318,7 @@ // See if there is an function file in the path. If so, return the // full path to the file. -std:string +std::string fcn_file_in_path (const std::string& name) { std::string retval; @@ -339,7 +339,7 @@ // See if there is an octave file in the path. If so, return the // full path to the file. -std:string +std::string oct_file_in_path (const std::string& name) { std::string retval; @@ -360,7 +360,7 @@ // Replace backslash escapes in a string with the real values. -std:string +std::string do_string_escapes (const std::string& s) { std::string retval; @@ -506,7 +506,7 @@ } } -std:string +std::string undo_string_escapes (const std::string& s) { std::string retval;