diff --git a/src/userinput.c b/src/userinput.c index bff0250..ef403d1 100644 --- a/src/userinput.c +++ b/src/userinput.c @@ -178,4 +178,10 @@ long getld(char *message, long *min, long *max) { LD(min) LD(max) return getNumber(message, minld, maxld, NULL, NULL, LONG_MIN, LONG_MAX); +} + +long long getlld(char *message, long long *min, long long *max) { + LD(min) + LD(max) + return getNumber(message, minld, maxld, NULL, NULL, LLONG_MIN, LLONG_MAX); } \ No newline at end of file