diff options
author | FreeArtMan <dos21h@gmail.com> | 2017-05-02 22:30:10 +0100 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2017-05-02 22:30:10 +0100 |
commit | c6f5689838de263b8129b7c612cde030617ce780 (patch) | |
tree | c533fd036ebf6441bf98694367f2f378f1d399ef /cmd_version.h | |
parent | 5f5d5837c9d662ce00c2fdad5b963eff6551d21c (diff) | |
download | agni-c6f5689838de263b8129b7c612cde030617ce780.tar.gz agni-c6f5689838de263b8129b7c612cde030617ce780.zip |
Move commands to seperate files
Diffstat (limited to 'cmd_version.h')
-rw-r--r-- | cmd_version.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cmd_version.h b/cmd_version.h new file mode 100644 index 0000000..ede27bb --- /dev/null +++ b/cmd_version.h @@ -0,0 +1,13 @@ +#ifndef __CMD_VERSION_H +#define __CMD_VERSION_H + +#include <stdlib.h> +#include <stdio.h> + +#include "util.h" + +void *cmd_version(void *data); + +#endif + + |