Lines Matching full:preg
31 <b>int regcomp(regex_t *<i>preg</i>, const char *<i>pattern</i>,</b>
35 <b>int regexec(regex_t *<i>preg</i>, const char *<i>string</i>,</b>
37 <b> size_t regerror(int <i>errcode</i>, const regex_t *<i>preg</i>,</b>
41 <b>void regfree(regex_t *<i>preg</i>);</b>
93 is passed in the argument <i>pattern</i>. The <i>preg</i> argument is a pointer
157 <i>preg</i> structure is filled in on success, and one member of the structure
163 use the contents of the <i>preg</i> structure. If, for example, you pass it to
202 The function <b>regexec()</b> is called to match a compiled pattern <i>preg</i>
261 <b>regcomp()</b> or <b>regexec()</b> to a printable message. If <i>preg</i> is not
270 with the <i>preg</i> structure. The function <b>regfree()</b> frees all such
271 memory, after which <i>preg</i> may no longer be used as a compiled expression.