sds_fail

void sds_fail (const char *string);


Display an error message.


This function prints an error message, along with the name of the SDS application and the given string at the command line. This function is meant for use with recoverable errors.

The argument string represents the text to print to the command line, following the name of the SDS application.

This function returns void.

Example

char string1[512];

strncpy(string1," was not able to find that point./n",sizeof(string1)-1);

sds_fail(string1);

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)

sds_abort

sds_alert

sds_exit