48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
|
#include "rprint.h"
|
||
|
#include "rbench.h"
|
||
|
|
||
|
void test_putc(void *arg) {
|
||
|
char *str = (char *)arg;
|
||
|
char c;
|
||
|
while ((c = *str++)) {
|
||
|
putc('\r', stdout);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void test_putchar(void *arg) {
|
||
|
char *str = (char *)arg;
|
||
|
char c;
|
||
|
while ((c = *str++)) {
|
||
|
putchar('\r');
|
||
|
}
|
||
|
}
|
||
|
void test_fwrite(void *arg) {
|
||
|
int length;
|
||
|
if (rbf->first) {
|
||
|
length = strlen((char *)arg);
|
||
|
rbf->data = (void *)&length;
|
||
|
} else {
|
||
|
length = (intptr_t)&rbf->data;
|
||
|
}
|
||
|
fwrite((char *)arg, 1, length, stdout);
|
||
|
}
|
||
|
void test_printf(void *arg) { printf("%s", (char *)arg); }
|
||
|
void test_rprint(void *arg) { rprint("%s", (char *)arg); }
|
||
|
void test_rprintr(void *arg) { rprintr("%s", (char *)arg); }
|
||
|
|
||
|
int main() {
|
||
|
rbench_t *r = rbench_new();
|
||
|
r->stdout = false;
|
||
|
r->silent = true;
|
||
|
long times = 100000;
|
||
|
r->add_function(r, "putc", "chrloop", test_putc);
|
||
|
r->add_function(r, "putchar", "chrloop", test_putchar);
|
||
|
r->add_function(r, "fwrite", "fileio", test_fwrite);
|
||
|
r->add_function(r, "printf", "default", test_printf);
|
||
|
r->add_function(r, "rprint", "custom", test_rprint);
|
||
|
r->add_function(r, "rprintr", "color", test_rprintr);
|
||
|
r->execute1(r, times, " \r");
|
||
|
r->execute1(r, times, "\\c\\T\\l\\L \r");
|
||
|
return rtest_end("");
|
||
|
}
|