File: groupselect.h

package info (click to toggle)
leafnode 1.12.0-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,496 kB
  • sloc: ansic: 10,961; sh: 1,709; xml: 627; makefile: 259; perl: 84; sed: 4
file content (11 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#ifndef GROUPSELECT_H
#define GROUPSELECT_H

/* for pcre type */
#define PCRE2_CODE_UNIT_WIDTH 0
#include <pcre2.h>

pcre2_code_8 *gs_compile(const unsigned char *regex);
int gs_match(const pcre2_code_8 *p, const unsigned char *s);

#endif