mirror of
https://github.com/Zxilly/UA2F.git
synced 2025-12-25 20:48:41 +00:00
27 lines
401 B
C
27 lines
401 B
C
#ifndef UA2F_CLI_H
|
|
#define UA2F_CLI_H
|
|
|
|
#include "custom.h"
|
|
|
|
#ifndef UA2F_GIT_COMMIT
|
|
#define UA2F_GIT_COMMIT "unknown"
|
|
#endif
|
|
|
|
#ifndef UA2F_GIT_BRANCH
|
|
#define UA2F_GIT_BRANCH "unknown"
|
|
#endif
|
|
|
|
#ifndef UA2F_GIT_TAG
|
|
#define UA2F_GIT_TAG "unknown"
|
|
#endif
|
|
|
|
#ifndef UA2F_VERSION
|
|
#define UA2F_VERSION "unknown"
|
|
#endif
|
|
|
|
void try_print_info(int argc, char *argv[]);
|
|
|
|
void require_root();
|
|
|
|
#endif // UA2F_CLI_H
|