On Thu, Sep 06, 2001 at 04:55:49PM -0700, Benjamin Stuhl wrote:
> I had a thought this morning on funtion/struct/global
> prefixes for Parrot. If we really plan to also run
> Python/Ruby/whatever on it, it does not look good for the
> entire API to be prefixed with "perl_". We really (IMHO)
> ought to pick something else so that we don't give people a
> convenient target for FUD.
Like this, you mean?
STRING_VTABLE Parrot_string_vtable[enc_max];
...
IV
string_compute_strlen(STRING *s) {
return (s->strlen = (Parrot_string_vtable[s->encoding].compute_strlen)(s));
}
:)
Simon