home *** CD-ROM | disk | FTP | other *** search
- // Lst33Obj.cpp : Implementation of Clst33App and DLL registration.
-
- #include "stdafx.h"
- #include "lst33.h"
- #include "Lst33Obj.h"
-
- /////////////////////////////////////////////////////////////////////////////
- //
-
-
- STDMETHODIMP CLst33Object::Lower(LPSTR lpInput, LPSTR* pOutput)
- {
- int i;
-
- *pOutput = new char[strlen(lpInput) + 1];
-
- for (i=0; i< strlen(lpInput); i++)
- {
- *(*pOutput+i) = *(lpInput + i) -'A' +'a';
- }
-
- *(*pOutput+i) = '\0';
-
- return S_OK;
- }
-
-