14 lines
310 B
C
14 lines
310 B
C
/* Aye, _mondo_ slow default method.. */
|
|
|
|
static void putstring(ExOstream* str, gchar* string){
|
|
gint i;
|
|
for(i = 0; string[i]; i++)
|
|
ex_ostream_putchar(str, string[i]);
|
|
}
|
|
|
|
#define OSTREAM_CLASS_INIT ostream_class_init
|
|
static void ostream_class_init(ExOstreamClass* klass){
|
|
klass->putstring = putstring;
|
|
}
|
|
|