next up previous contents
Next: Tuples Up: Datatypes representation Previous: Basic datatypes   Contents

Strings

        struct string {
                int len;
                char *data;
        }

len is length of string, in characters. data is string content, it does not have to be NUL terminated. Strings are passed as struct string*



2002-01-28