NAME

caseS - convert upper and lower case

SYNOPSIS

#include <basic/string.h>

struct string lcaseS(s)
struct string *s;

struct string ucaseS(s)
struct string *s;

DESCRIPTION

LcaseS allocates and returns a copy of the string pointed to by s with any upper case alphabetic characters converted to their lower case equivalents.  This function implements the BASIC LCASE$ function. 

UcaseS allocates and returns a copy of the string pointed to by s with any lower case alphabetic characters converted to their upper case equivalents.  This function implements the BASIC UCASE$ function. 

SEE ALSO

string(inc)
lcase$(func), ucase$(func)

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber