| /* Error message strings for error codes listed in `regex.h'. This list |
| needs to be in sync with the codes listed there, naturally. */ |
| /* Converted to single string by Rich Felker to remove the need for |
| * data relocations at runtime, 27 Feb 2006. */ |
| static const char messages[] = { |
| "Unknown collating element\0" |
| "Unknown character class name\0" |
| "Invalid back reference\0" |
| "Invalid contents of {}\0" |
| "Invalid character range\0" |
| "Repetition not preceded by valid expression\0" |
| size_t regerror(int e, const regex_t *restrict preg, char *restrict buf, size_t size) |
| for (s=messages; e && *s; e--, s+=strlen(s)+1); |
| return 1+snprintf(buf, size, "%s", s); |