hier ein kleines Beispiel, gb.abi ist nicht nötig.
Code: Alles auswählen
LIBRARY "libc:6"
EXTERN atoi(wert AS Pointer) AS Integer
STATIC PUBLIC SUB Main()
DIM nPtr AS Pointer
nPtr = Alloc("1027")
' String in Integer
PRINT atoi(nPtr)
Realloc(nPtr, 1)
END
Chap