about summary refs log blame commit diff
path: root/src/libnix/exec.hh
blob: 8d410e4043837d2a57183a6e9c72f789dd952776 (plain) (tree)
1
2
3
4
5
6
7
8





                 

                  







                                                              

                                                   


                      
#ifndef __EXEC_H
#define __EXEC_H

#include <string>
#include <map>

#include "util.hh"

using namespace std;


/* A Unix environment is a mapping from strings to strings. */
typedef map<string, string> Environment;


/* Run a program. */
void runProgram(const string & program, 
    const Strings & args, const Environment & env);


#endif /* !__EXEC_H */