mirror of
https://github.com/AGWA/git-crypt.git
synced 2025-12-12 07:40:32 -08:00
13 lines
262 B
C++
13 lines
262 B
C++
#ifndef _COMMANDS_H
|
|
#define _COMMANDS_H
|
|
|
|
|
|
void clean (const char* keyfile);
|
|
void smudge (const char* keyfile);
|
|
void diff (const char* keyfile, const char* filename);
|
|
void init (const char* argv0, const char* keyfile);
|
|
void keygen (const char* keyfile);
|
|
|
|
#endif
|
|
|