WHY2/src/lib/flags.c

16 lines
208 B
C
Raw Normal View History

#include <why2/flags.h>
2022-05-29 17:45:34 +02:00
unsigned long getKeyLength()
{
return keyLength;
}
2022-05-27 17:25:02 +02:00
inputFlags noFlags()
{
return (inputFlags) {0, 0};
}
void setKeyLength(int keyLengthNew)
{
keyLength = keyLengthNew;
}