XSLPgetbanner
| XSLPgetbanner | 
  Purpose
 
 
 Retrieve the Xpress NonLinear banner and copyright messages
 
 
  Synopsis
 
 int XPRS_CC XSLPgetbanner(char *Banner);
 
  Argument
 
 | 
     Banner 
     | 
     Character buffer to hold the banner. This will be at most 256 characters including the null terminator.
     | 
  Example
 
 
 The following example retrieves the Xpress NonLinear banner and prints it
 
 char Buffer[260];
XSLPgetbanner(Buffer];
printf("%s\n",Buffer);
  Further information
 
 Note that XSLPgetbanner does not take the normal Prob argument.
If XSLPgetbanner is called before XPRSinit, then it will return only the Xpress NonLinear information; otherwise it will include the XPRSgetbanner information as well.
 
