Type of structure that keeps masked binary string.
typedef struct t_hexstr { // String used for hex/text search
int n; // String length
char data[TEXTLEN]; // Data
char mask[TEXTLEN]; // Mask, 0 bits are masked
} t_hexstr;
Members:
n - length of the string in bytes;
data - array with string data. Only those data bits are significant which has 1 in corresponding bits of mask;
mask - array with mask data.
See also: Gethexstring