c_low2up - Converts ASCII character string to upper case

SYNTAX

#include "worgen.h"

FUNCTION c_low2up (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 is the ASCII character string with all uppercase characters. The nonalphabetic and uppercase characters are unchanged.

nbytes (input, integer)

Number of bytes in buf that are to be converted.

DESCRIPTION

The c_low2up() routine is used to convert an ASCII character string to uppercase.

RETURN VALUE

c_low2up() has no return values.