c_up2low - Converts ASCII character string to lower case

SYNTAX

#include "worgen.h"

FUNCTION c_up2low (buf, nbytes)

     char               *buf;
     long               *nbytes;

PARAMETERS

buf (input/output, character, length (*))

On input, buf is the ASCII character string that may contain upper and lowercase characters. On output, buf s the ASCII character string with all lowercase characters. The nonalphabetic and lowercase characters are unchanged.

nbytes (input, integer)

Number of bytes in buf that are to be converted.

DESCRIPTION

The c_up2low() routine is used to convert an ASCII character string to lowercase.

RETURN VALUE

c_up2low() has no return values.