Am Monday, dem 24. Dec 2007 schrieb Harmonious Botch:
For anyone else who may have the same problem, a quick summary is that even though C uses pointers for strings, the pascal equivalent of a C string such as: char c[somenumber];
This is not a pointer in C but a vector (array in pascal wording). A pointer would be "char *c".
is not a pointer like: var c: ^char; but is: var c: array[0..(somenumber-1)] of char;
When you use pointers in C, you can also use a pointer in Pascal. When you use a vector, you have to use the Pascal equivalent (Array).