Function _stords() Foundation
Assigns a character string as a date value to a parameter.
BOOL _stords(CHAR* cDate,
XppParamList pList, ULONG ulIndex, ...);
Always returns TRUE.
_stords() is used to return a date value. The string must contain a zero padded date in the form "YYYYMMDD". Any additional characters in the string are ignored. If the string can not be converted into a valid date, the parameter value is set to a NULL date.
This function is normally used along with parameters passed by reference to return multiple values to the calling function. However, the changed parameters can also be accessed again within the C function.
/*
Assigns a date to a parameter
*/
#include <xpppar.h>
stords("19940726", <pList>, 1, 0);
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.