This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Problem with CharLower function


Hi,
I have a problem with CharLower function. Here is the test code:

#include <windows.h>
#include <Windows32/Functions.h>
#include <stdio.h>
int main(int ac, char **av)
{
    LPTSTR ptr;
    LPSTR str1="QWERTY";
    LPSTR str2="qwerty";
    DWORD nBytes=1;
  printf("This is the original string: %s\n",str1);
  ptr=CharLower(str1);
  printf("This is the converted string: %s   %s\n",str1,ptr);
  printf("It shoud be equal to: %s\n",str2);
    if ( (nBytes=CharLowerBuff(str1,(DWORD)6)) != 6 )
    {
        printf("Error on CharLowBuff(), converted %i\n",nBytes);
    }
  printf("After CharLowerBuff: %s\n",str1);
    
}

Compile:
gcc -o test.exe test.c -dWIN32 -luser32

Running test.exe gives:

This is the original string: QWERTY
This is the converted string: QWERTY   (null)
It shoud be equal to: qwerty
Error on CharLowBuff(), converted 0

Does anybody know what is going on?

Iliev Andrei







-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]