ORCA-C/Tests/Spec.Conform/SPC4311.1.CC
2017-10-01 17:47:47 -06:00

1 line
405 B
C++
Executable File

/* Separately compiled file containing functions called from main program in */
/* the file spc4.3.1.1.cc. */
#include <ctype.h>
int I1 (char ch)
{
if (islower (ch))
return toupper (ch);
}
/*****************************************************************************/
#include <math.h>
double D1 (float f)
{
return floor (f);
}