edmiStringToDate
EdmiError edmiStringToDate(EdmiStringDate stringDate, EdmiPackedDate *packedDate, EdmiDate *date);
Converts the specified time and date in EdmiStringDate format to EdmiDate and EdmiPackedDate formats.
Arguments
Type | Name | Comment |
EdmiStringDate | stringDate | The specified time and date in EdmiStringDate format to be converted. |
EdmiPackedDate | packedDate | Address of the variable that will receive the specified time and date in EdmiPackedDate format. |
EdmiDate | date | Address of a variable of type EdmiDate that will receive the specified time and date in EdmiDate format. |
Return Value
Error rendering macro 'excerpt-include' : User 'null' does not have permission to view the page 'US:_r_EDMInterface'.
Options
Example
EdmiError rstat; EdmiStringDate stringDate; EdmiPackedDate packedDate; EdmiDate date; ... if (rstat = edmiStringToDate (stringDate, &packedDate, &date)) { /* Error in operation */ printf("\nError in edmiStringToDate: %s", edmiGetErrorText(rstat)); goto error; } . . .
See also
Filter by label
There are no items with the selected labels at this time.