Re: PIO Questions.

2003-09-03 Thread Juergen Boemmels
Benjamin Goldberg <[EMAIL PROTECTED]> writes: > I'm looking for, but not finding, information regarding the character > type and encoding on parrot io objects. > > As an example of why... I found this in io.ops : > > op write(in PMC) { > PMC *p = $1; > STRING *s = (VTABLE_get_string(interpre

Re: PIO Questions.

2003-09-03 Thread Leopold Toetsch
Benjamin Goldberg <[EMAIL PROTECTED]> wrote: > As an example of why... I found this in io.ops : > op write(in PMC) { Sorry for that. This was a quick hack, to get languages/parrot_compiler/parrot_pasm working again. As you mentioned below, there was no print routine that transparently handled bi

PIO Questions.

2003-09-02 Thread Benjamin Goldberg
I'm looking for, but not finding, information regarding the character type and encoding on parrot io objects. As an example of why... I found this in io.ops : op write(in PMC) { PMC *p = $1; STRING *s = (VTABLE_get_string(interpreter, p)); if (s) { PIO_write(interpreter, PIO_STDOUT(int