home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1995 September / PCPRO2_995.ISO / virtek / dos / libex / libex161.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-16  |  405 b   |  13 lines

  1.                       // Example: 161 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. char  string1[]={"A TEST sTrIng. 0123AbCd."};
  5. void  main(void)
  6. {
  7.   printf("\nString 1 is :- %s\n",string1);
  8.   printf("\nNow making the string all lower case.\n\n");
  9.   dddStrLwr(string1); // Turn all the upper case chars to lower case.
  10.   printf("String 1 is :- %s\n",string1);
  11. }
  12.  
  13.