thats most of the benchmarking

strange about the puts in soml, hard to see where a factor of 10 would
come from
This commit is contained in:
Torsten Ruger
2015-11-20 23:51:58 +02:00
parent 28836457c5
commit 96972dab29
13 changed files with 115 additions and 30 deletions

11
test/bench/itos.c Normal file
View File

@@ -0,0 +1,11 @@
#include<stdio.h>
int main(void)
{
char stringa[20] ;
int counter = 98304 + 1696;
while(counter--) {
sprintf(stringa, "%i\n" , counter);
}
}