ultimatepp/bazaar/SysExec/ArgEnv.h
micio dda8649d91 Bazaar/SysExec: another fix for windows
git-svn-id: svn://ultimatepp.org/upp/trunk@8166 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-02-10 16:48:40 +00:00

18 lines
549 B
C

#ifndef _SysExec_ArgEnv_h_
#define _SysExec_ArgEnv_h_
#include <Core/Core.h>
NAMESPACE_UPP
///////////////////////////////////////////////////////////////////////////////////////////////
// parses an args line to be useable by spawnxx functions
char **BuildArgs(String command, String const &argline);
///////////////////////////////////////////////////////////////////////////////////////////////
// parses environment map and builds env array
char **BuildEnv(const VectorMap<String, String> &env);
END_UPP_NAMESPACE
#endif