isalpha function in C runtime library (MSVCRT.DLL)
Posted: Mon Jun 25, 2018 2:03 pm
Code: Select all
OpenLibrary(0, "msvcrt.dll")
isalpha = GetFunction(0, "isalpha")
CloseLibrary(0)
Debug CallCFunctionFast(isalpha, 'i')
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
OpenLibrary(0, "msvcrt.dll")
isalpha = GetFunction(0, "isalpha")
CloseLibrary(0)
Debug CallCFunctionFast(isalpha, 'i')
Code: Select all
ImportC "msvcrt.lib"
isalpha(c.i)
EndImport
Debug isalpha('i')