Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ strlwr(DOS) — Xenix 2.3.4g

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

strupr(DOS)



     STRLWR(DOS)              XENIX System V               STRLWR(DOS)



     Name
          strlwr - Converts uppercase characters to lowercase
          characters.

     Syntax
          #include <string.h>

          char *strlwr (string);
          char *string;

     Description
          The strlwr function converts any uppercase letters in the
          given null-terminated string to lowercase.  Other characters
          are not affected.

     Return Value
          strlwr returns a pointer to the converted string.  There is
          no error return.

     See Also
          strupr(DOS)

     Example
          #include <string.h>

          char string[100], *copy;      .       .       .  /* Make a
          copy of a string in lower case.  */

          copy = strlwr (strdup (string));

     Notes
          This call must be compiled with the -dos flag.























     Page 1                                           (printed 8/7/87)



Typewritten Software • bear@typewritten.org • Edmonds, WA 98026