// Copyright (c) 1999-2000 David Muse // See the COPYING file for more information. #ifndef CASECHANGE_H #define CASECHANGE_H class casechange { public: casechange(); virtual ~casechange(); void upper(char *string); // converts string to uppercase void lower(char *string); // converts string to lowercase }; #endif