Initial version

This commit is contained in:
Andrew Ayer
2012-07-06 15:38:40 -07:00
commit 6e3dd5a8d3
9 changed files with 463 additions and 0 deletions

10
util.hpp Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _UTIL_H
#define _UTIL_H
#include <string>
int exec_command (const char* command, std::string& output);
std::string resolve_path (const char* path);
#endif