summaryrefslogtreecommitdiffstats
path: root/src/libluh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libluh.h')
-rw-r--r--src/libluh.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libluh.h b/src/libluh.h
index 77a8d52..ba3f450 100644
--- a/src/libluh.h
+++ b/src/libluh.h
@@ -1,6 +1,8 @@
#ifndef LIBLUH
#define LIBLUH
+#define eprintf(...) fprintf(stderr, __VA_ARGS__)
+
typedef struct opts {
int64_t comm;
int64_t nbytes;
@@ -17,5 +19,6 @@ char* cryptXor (char* inputStr, FILE* keyFile);
char* fcryptXor (FILE* inputFile, FILE* keyFile);
char* binDump (char* inputStr, char* binChars);
char* ubinDump (char* inputStr, char* binChars);
+int qprintf (int isQuiet, const char* printStr, ...);
#endif