mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-28 14:17:02 -06:00
18 lines
552 B
C
18 lines
552 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
|
|
Buffer<char *>BuildArgs(String const &command, String const &argline);
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
// parses environment map and builds env array
|
|
Buffer<char *>BuildEnv(const VectorMap<String, String> &env);
|
|
|
|
END_UPP_NAMESPACE
|
|
|
|
#endif
|