| 77 |
REG_ASSERT, /* internal error: code overflow */ |
REG_ASSERT, /* internal error: code overflow */ |
| 78 |
REG_BADPAT, /* unrecognized character after (?< */ |
REG_BADPAT, /* unrecognized character after (?< */ |
| 79 |
REG_BADPAT, /* lookbehind assertion is not fixed length */ |
REG_BADPAT, /* lookbehind assertion is not fixed length */ |
| 80 |
REG_BADPAT, /* malformed number after (?( */ |
REG_BADPAT, /* malformed number or name after (?( */ |
| 81 |
REG_BADPAT, /* conditional group containe more than two branches */ |
REG_BADPAT, /* conditional group containe more than two branches */ |
| 82 |
REG_BADPAT, /* assertion expected after (?( */ |
REG_BADPAT, /* assertion expected after (?( */ |
| 83 |
REG_BADPAT, /* (?R or (?digits must be followed by ) */ |
REG_BADPAT, /* (?R or (?digits must be followed by ) */ |
| 94 |
REG_BADPAT, /* recursive call could loop indefinitely */ |
REG_BADPAT, /* recursive call could loop indefinitely */ |
| 95 |
REG_BADPAT, /* unrecognized character after (?P */ |
REG_BADPAT, /* unrecognized character after (?P */ |
| 96 |
REG_BADPAT, /* syntax error after (?P */ |
REG_BADPAT, /* syntax error after (?P */ |
| 97 |
REG_BADPAT, /* two named groups have the same name */ |
REG_BADPAT, /* two named subpatterns have the same name */ |
| 98 |
REG_BADPAT, /* invalid UTF-8 string */ |
REG_BADPAT, /* invalid UTF-8 string */ |
| 99 |
REG_BADPAT, /* support for \P, \p, and \X has not been compiled */ |
REG_BADPAT, /* support for \P, \p, and \X has not been compiled */ |
| 100 |
REG_BADPAT, /* malformed \P or \p sequence */ |
REG_BADPAT, /* malformed \P or \p sequence */ |
| 101 |
REG_BADPAT /* unknown property name after \P or \p */ |
REG_BADPAT, /* unknown property name after \P or \p */ |
| 102 |
|
REG_BADPAT, /* subpattern name is too long (maximum 32 characters) */ |
| 103 |
|
REG_BADPAT, /* too many named subpatterns (maximum 10,000) */ |
| 104 |
|
REG_BADPAT, /* repeated subpattern is too long */ |
| 105 |
|
REG_BADPAT /* octal value is greater than \377 (not in UTF-8 mode) */ |
| 106 |
}; |
}; |
| 107 |
|
|
| 108 |
/* Table of texts corresponding to POSIX error codes */ |
/* Table of texts corresponding to POSIX error codes */ |