As ctype.h isn't a library on it's own but a part of the standard C library, there's no specific file
to import. The std. C library resides in crt.lib from the Pelles C installation. I just tried to import
it, the code compiles but crashes immediately. I think this is because the CRT contains startup
initialisation code, which of course poses a problem here.
From what I understand, .lib files are just containers of many .obj files. So I "unzipped" the crt.lib
with 7zip and got a folder inside with the mentioned .obj files. Some of my "unresolved's" are present as
distinct files. Importing them inside my PB code removes the error, but not all unresolved symbols are resolved.
I don't consider this a solution, more or less some creepy hack that just solves a part
of the problem

Any better ideas on importing the CRT without crashing my code?
EDIT: I'm such an idiot, POLIB.exe does exactly what I did with 7zip - only properly!
The /EXPLODE option gives me a lot of .obj files, and all unresolved symbols are present there
