~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to Common/StringUtils.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-09-27 17:36:40 UTC
  • mfrom: (1.4.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090927173640-meoeywl4f5hq5qas
Tags: 2.4.2.dfsg-1
[Christophe Prud'homme]
* New upstream release
  + solver code refactoring
  + better IDE integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
void SwapBytes(char *array, int size, int n);
14
14
std::string ExtractDoubleQuotedString(const char *str, int len);
15
15
std::string SanitizeTeXString(const char *in, int equation);
16
 
std::string FixWindowsPath(const char *in);
 
16
std::string FixWindowsPath(std::string in);
17
17
std::string FixRelativePath(std::string reference, std::string in);
18
18
std::vector<std::string> SplitFileName(std::string fileName);
19
19
std::vector<std::string> SplitWhiteSpace(std::string in, unsigned int len);
20
 
void ReplaceMultiFormat(const char *in, const char *val, char *out);
 
20
std::string ReplacePercentS(std::string in, std::string val);
21
21
 
22
22
#endif