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

12
commands.hpp Normal file
View File

@@ -0,0 +1,12 @@
#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