move c benchmarks to own directory

This commit is contained in:
Torsten Ruger
2015-11-21 14:22:53 +02:00
parent d0b655d05f
commit 9eab4b7f67
5 changed files with 0 additions and 0 deletions

11
test/bench/c/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);
}
}