DateTime::createFromFormat().
#- There are a few more things to come, once ready, I'll regenerate the .c file
# and merge.
break;
case '#': /* separation symbol */
- if (*ptr == ';' || *ptr == ':' || *ptr == '/' || *ptr == '.' || *ptr == ',' || *ptr == '-') {
+ if (*ptr == ';' || *ptr == ':' || *ptr == '/' || *ptr == '.' || *ptr == ',' || *ptr == '-' || *ptr == '(' || *ptr == ')') {
++ptr;
} else {
add_pbf_error(s, "The separation symbol ([;:/.,-]) could not be found", string, begin);
case '.':
case ',':
case '-':
+ case '(':
+ case ')':
if (*ptr == *fptr) {
++ptr;
} else {