src_globals.txt

Global variables (globals.c, globals.h)
[NOTE: this file is not a Diff file!]

Task: provides evil, evil global variables to be used by core operations.

>>> globals.c

--- char _global_padding_[STDIN_BUFFER_SIZE];
	* padding data used by `encrypt_static()' from `coreop.c'

--- size_t _global_padding_length_ = 0;
	* padding data array length, also used by `encrypt_static()'

--- volatile sig_atomic_t _global_run_flag_ = XORFD_CONTINUE;
	* flag that is set to `XORFD_ABORT' when `SIGTERM' signal was caught
	* it is continuously checked by the main loops in `compute()'

>>> globals.h

--- n/a
