Displaying 1 result from an estimated 1 matches for "regex_matcher_data_t".
2007 Aug 23
1
[nut-commits] svn commit r1073 - in trunk: . drivers
...ot;%04x", n);
> +
> return match_regex(preg, buf);
> }
>
> /* private data type: hold a set of compiled regular expressions. */
> struct regex_matcher_data_s {
> - regex_t *regex[6];
> + regex_t *regex[6];
> };
> +
> typedef struct regex_matcher_data_s regex_matcher_data_t;
>
> /* private callback function for regex matches */
> -static int match_function_regex(HIDDevice_t *d, void *privdata)
> +static int match_function_regex(HIDDevice_t *hd, void *privdata)
> {
> - regex_matcher_data_t *data = (regex_matcher_data_t *)privdata;
> + regex_mat...