mirror of
https://github.com/textmate/textmate.git
synced 2026-01-24 14:17:56 -05:00
15 lines
371 B
C++
15 lines
371 B
C++
#ifndef IO_EXEC_H_4VCQB3PK
|
|
#define IO_EXEC_H_4VCQB3PK
|
|
|
|
#include <oak/misc.h>
|
|
|
|
namespace io
|
|
{
|
|
// takes NULL-terminated list of arguments
|
|
PUBLIC std::string exec (std::string const& cmd, ...);
|
|
PUBLIC std::string exec (std::map<std::string, std::string> const& environment, std::string const& cmd, ...);
|
|
|
|
} /* io */
|
|
|
|
#endif /* end of include guard: IO_EXEC_H_4VCQB3PK */
|