home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / str2lwr.c < prev    next >
Text File  |  1989-02-08  |  119b  |  8 lines

  1. # include "string.h"
  2. void str2lwr(a)
  3. char a[];
  4. {
  5.     int j;
  6.     for (j=0;j<strlen(a);j++)
  7.          a[j]=tolower(a[j]);
  8. }