// DLL‚Ì—á // bcc32 -WD test3.cpp #include extern "C" __declspec(dllexport) char s2b(char *str) { unsigned int i; for(i = 0; i < strlen(str); i++) if((str[i] >= 0x61) && (str[i] <= 0x7a)) str[i] -= 0x20; return 1; }