mirror of
https://github.com/AGWA/git-crypt.git
synced 2025-12-05 20:40:05 -08:00
11 lines
168 B
C++
11 lines
168 B
C++
#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
|
|
|