8 int *pDay,
int *pMonth,
int *pYear,
9 int *pHour,
int *pMinute,
int *pSecond,
10 int want_date,
int want_time)
15 size_t length, text_len;
24 if(
fb_hDateParse( text, text_len, pDay, pMonth, pYear, &length ) ) {
29 while( isspace( *text ) )
35 if(
fb_hTimeParse( text, text_len, pHour, pMinute, pSecond, &length ) ) {
39 }
else if( !want_time ) {
42 }
else if(
fb_hTimeParse( text, text_len, pHour, pMinute, pSecond, &length ) ) {
47 while( isspace( *text ) )
53 if(
fb_hDateParse( text, text_len, pDay, pMonth, pYear, &length ) ) {
57 }
else if( !want_date ) {
65 if( !isspace( *text++ ) ) {
89 pHour, pMinute, pSecond,